Skip to contents

Queries the Data Commons API for specified property relationships of given nodes.

Usage

dc_get_node(
  nodes,
  expression,
  api_key = Sys.getenv("DATACOMMONS_API_KEY"),
  base_url = Sys.getenv("DATACOMMONS_BASE_URL", unset =
    "https://api.datacommons.org/v2/"),
  return_type = "json"
)

Arguments

nodes

A character vector of terms to resolve.

expression

A relation expression string (e.g., <-*, ->name, or ->[name, latitude]).

api_key

Your Data Commons API key. If not provided, uses the environment variable DATACOMMONS_API_KEY.

base_url

The base URL of the Data Commons API. Defaults to the public endpoint. For custom deployments, must end with /core/api/v2/.

return_type

Return format: either "list" (parsed R object) or "json" (JSON string).

Value

A list or JSON string, depending on return_type.

Examples

# Get all property labels for a given node
dc_get_node(nodes = "country/USA", expression = "<-")
#> [1] "{\"data\":{\"country/USA\":{\"properties\":[\"affectedPlace\",\"areaServed\",\"comparisonRegion\",\"containedInPlace\",\"exportDestination\",\"importSource\",\"lendingEntity\",\"location\",\"member\",\"placeOfBirth\",\"tradePartner\"]}}}"

# Get one property value for a given node
dc_get_node(nodes = "dc/03lw9rhpendw5", expression = "->name")
#> [1] "{\"data\":{\"dc/03lw9rhpendw5\":{\"arcs\":{\"name\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"191 Peachtree Tower\"}]}}}}}"

# Get multiple property values for multiple nodes
dc_get_node(
  nodes = c("geoId/06085", "geoId/06087"),
  expression = "->[name, latitude, longitude]"
)
#> [1] "{\"data\":{\"geoId/06085\":{\"arcs\":{\"longitude\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"-121.68954\"},{\"provenanceId\":\"dc/base/Place\",\"value\":\"-121.97\"}]},\"name\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"Santa Clara County\"},{\"provenanceId\":\"dc/base/CensusSuperTMCFTable_ECNBASIC2012_EC1200A1\",\"value\":\"Santa Clara County, California\"}]},\"latitude\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"37.221614\"},{\"provenanceId\":\"dc/base/Place\",\"value\":\"37.36\"}]}}},\"geoId/06087\":{\"arcs\":{\"latitude\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"37.012347\"},{\"provenanceId\":\"dc/base/Place\",\"value\":\"37.03\"}]},\"longitude\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"-122.007789\"},{\"provenanceId\":\"dc/base/Place\",\"value\":\"-122.01\"}]},\"name\":{\"nodes\":[{\"provenanceId\":\"dc/base/Place\",\"value\":\"Santa Cruz County\"},{\"provenanceId\":\"dc/base/CensusSuperTMCFTable_ECNBASIC2012_EC1200A1\",\"value\":\"Santa Cruz County, California\"}]}}}}}"

# Get all property values for a node
dc_get_node(nodes = "PowerPlant", expression = "<-*")
#> iterating ■■■■■■■■■■■■■                     40% | ETA:  2s
#> iterating ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■  100% | ETA:  0s
#>  [1] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"domainIncludes\":{\"nodes\":[{\"name\":\"ashImpoundmentStatus\",\"types\":[\"Property\"],\"dcid\":\"ashImpoundmentStatus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"co2Mass\",\"types\":[\"Property\"],\"dcid\":\"co2Mass\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"co2Rate\",\"types\":[\"Property\"],\"dcid\":\"co2Rate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"eiaPlantCode\",\"types\":[\"Property\"],\"dcid\":\"eiaPlantCode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"fercCogenerationDocketNumber\",\"types\":[\"Property\"],\"dcid\":\"fercCogenerationDocketNumber\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"fercExemptWholesaleGeneratorDocketNumber\",\"types\":[\"Property\"],\"dcid\":\"fercExemptWholesaleGeneratorDocketNumber\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"fercSmallPowerProducerDocketNumber\",\"types\":[\"Property\"],\"dcid\":\"fercSmallPowerProducerDocketNumber\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"fercStatus\",\"types\":[\"Property\"],\"dcid\":\"fercStatus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"gLoad\",\"types\":[\"Property\"],\"dcid\":\"gLoad\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"gridVoltage\",\"types\":[\"Property\"],\"dcid\":\"gridVoltage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"heatInput\",\"types\":[\"Property\"],\"dcid\":\"heatInput\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"isEnergyStored\",\"types\":[\"Property\"],\"dcid\":\"isEnergyStored\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"isLiquefiedNaturalGasStored\",\"types\":[\"Property\"],\"dcid\":\"isLiquefiedNaturalGasStored\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"isNaturalGasStored\",\"types\":[\"Property\"],\"dcid\":\"isNaturalGasStored\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"noxMass\",\"types\":[\"Property\"],\"dcid\":\"noxMass\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"noxRate\",\"types\":[\"Property\"],\"dcid\":\"noxRate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"orispl\",\"types\":[\"Property\"],\"dcid\":\"orispl\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"powerPlantCode\",\"types\":[\"Property\"],\"dcid\":\"powerPlantCode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"powerPlantSector\",\"types\":[\"Property\"],\"dcid\":\"powerPlantSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"regulatoryStatus\",\"types\":[\"Property\"],\"dcid\":\"regulatoryStatus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"sLoad\",\"types\":[\"Property\"],\"dcid\":\"sLoad\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"so2Mass\",\"types\":[\"Property\"],\"dcid\":\"so2Mass\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"so2Rate\",\"types\":[\"Property\"],\"dcid\":\"so2Rate\",\"provenanceId\":\"dc/base/Schema\"}]},\"subClassOf\":{\"nodes\":[{\"name\":\"PowerPlantUnit\",\"types\":[\"Class\"],\"dcid\":\"PowerPlantUnit\",\"provenanceId\":\"dc/base/Schema\"}]},\"typeOf\":{\"nodes\":[{\"name\":\"Suzlon Project VIII LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/000qxlm93vn93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYC-HH - CONEY ISLAND HOSPITAL\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/002x855kf3wv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0053j61z19gn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hennepin Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/005r26ht43r1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bountiful City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/006cgl79w0bj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NAEA Ocean Peaking Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0085339hxpprd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crete Energy Venture LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/009cxnrd9h8x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"KODE Novus II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00cjz4cxe6sv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watchtower Educational Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00d76gnyx8p7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Beaver Falls Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00ffxv2tbg236\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Carbide Seadrift Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00grhxye7tzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"45 Mile Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00h10b29l59ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00jy62n5m9bt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martins Creek LLC Fishbach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00qrn4s06d4nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornwall Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00rvj1vpmjb55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ray Olinger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00sq566xmfe34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MTHS Co-Gen Buildings\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00trww0gx9w22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearl Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00w9rbw8yn7x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayonne Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00xvh8e3ltt2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00zbvj371s9yg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Austin Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00zjgb4rjchx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/00zwb5wny5gf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carver Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/011q2ff48hys2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gordon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/011s19rm0mzh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steamboat III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/012s6cvbvpk02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gramercy Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/016lsx8me17d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White River Lock and Dam 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/017y3py1dzkmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/019rn1cj0r6kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diablo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/019xsrcxdmh04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenwood Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01bjxzhmjf7yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01blq25mdxzs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prosperity Energy Storage Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01cm3vpvjp7v9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auglaize Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01e874nsqwxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springhill Gas Recovery Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01f8slj1ym108\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01gbhrk4b7sc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01l14ts2djhk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01ne0qke4ke23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Peter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01qbsbnj0mhvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyger Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01rb2yqenv6j3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Cajun 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01svd793w0vl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01wjlll0800nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01xe39q7j5x45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Front Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01yelbtksehmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Henry Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/01yfkmlzj620f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashdown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/022hy7tyhcgs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deertrack Park Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/022kqbnt53937\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fredonia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/023m6eq4brelh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hebron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/025rsesl1k964\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt.Sinai-St.Lukes Roosevelt Hosp. Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02b23nhkre8r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Navajo Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02b53twnh3fx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin Creek Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02dxgcmdqhpyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterling\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02e07z6tdqqj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Record Hill Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02g1z0y50echd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scherer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02kvhl978yfn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midland Cogeneration Venture\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02nb32h1rgpj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02shc6mkn63x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acadia Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02spv15zzcq0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Industrial Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02sz9xw4sljgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02twqvnh7slx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nash 58 Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02v1ccdtldee2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Labadie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02vrdez6ftxg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Cedar Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02xxjvjse5e5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East 12th Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02y5k00y7qpe4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Salisbury Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/02yn61g6px344\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/032htnd3m9cw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller Industrial Parks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/032nkwr8117wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelbina Power #2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/033tk50kv0vcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newton Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/037x4qwqnhqqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyoming 2 CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0395y94l0wwc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vacaville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0397q57rbr22d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emporia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03cesq3cbtrb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaukauna Paper Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03cglchcgb3g3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodhull Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03cvlnc24rtr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Site 980 65\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03gb8gyncrhf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Payne's Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03gt135cdfd48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Piedmont LFGTE Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03j6s9tf0nve8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albert Einstein College of Medicine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03jp1bz7jm7t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Finger Lakes Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03lr236gn89q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"191 Peachtree Tower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03lw9rhpendw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Triton East and West Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03mt4fdr25ddb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03n1368q84we9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Beanworks D PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03nghvx3mv6p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merced Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03p40nvde22z6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spectrum Solar PV Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03p5by7wpg9wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Airport Industrial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03w11yn4es0m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Dorado Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03w89l3p30q49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley Queen Cheese\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03wjzcpvh7yp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunEdison Walgreens Moreno Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03xhrbntslwxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/03ye1m8rgxtz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carina Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0413zqwh9gq4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JCO Oxides Olefins Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/042f69fnym7dg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0443498m96vh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Williams-Sonoma Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/045639c46x4e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waxdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/045rdx0mje787\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweeny Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/046kvgg1qqd61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/048g146treqph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswego Falls West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04dlzfcglypn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Industrial Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04ectr7m56klb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newfound Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04f9k8b639r3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxford Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04gmt854gf4gd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows (AR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04kq2yzfwbwsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Marys Hospital Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04kx5sfngr4y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater Reservoir Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04lvzd8vyllz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hermiston Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04m1vdxg5gdwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney MT Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04my0jxzxqh34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 1656 McCarthy, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04ph8tbsnkqb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxbow (OR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04qg2grr8ymq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Strom Thurmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04qpecvj32yfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California State University San Bernardi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04rw6rv4edkl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CTV Power Purchase Contract Trust\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04vxtgxj0949b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J K Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04w1mzfrt5383\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04wpb0n3ev1s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fossil Gulch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04wtjrt8d2s1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trenton North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/04z7459434yt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/050d22drypee5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arthur Von Rosenberg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/050f3f2e8hjc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Temescal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/050hb57yf5549\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia LFG Oak Grove Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05101n740we81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alta Wind Energy Center V\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/053qbr9gk6m28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Point Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0541mpmc0mrsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orchard Hills Renewable Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/054b3xspjmqzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nellis Air Force Base Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/058212msfpj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferson Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/058bx3bstdlkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vickers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05b8r8ydzpneg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mead Coated Board\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05btv1thdwye6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stoltze CoGen1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05ezrem9w1dj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 67\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05gn8ch05l251\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pyramid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05hyfzxw948j5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moyie Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05v9y4b5xr3y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Island Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05vrg4tr02bsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imboden Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05w003hwdc4p7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tofteland Windfarm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05x430gxwx8k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Municipal Electric North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05yb4zxyl5y0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallup Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/05zzs751ynmc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pole Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0602nldn7gyk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ord\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0609ewdy1frx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashokan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0612bv745mvt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sub 2 Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06255gwmv28y9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apple Data Center PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06583kkrrjf17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Bend Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/066xxj8zkxk28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06beemrnpy4tg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tyee Lake Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06bgsl5t9nzjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06btm1qjl0t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Acres Breeze LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06cpgx09tk2wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Falls Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06cqkeml57453\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Estherville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06czj014egxh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winchendon Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06d6hcmlc6rt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06fjscygd8eyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minisink Solar 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06grdb52v082\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FLS Solar 170, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06lc7l4tjhjlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartzog\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06mj2286lb3k8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06r641wd7bcg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Smyrna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06t6jxlmnnf71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamar Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06t7ncfk3lk1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06vx78he4y2t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06wwhj8hqkv93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B.R. Corcoran CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06x05q2jryjnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cheoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/06z48hntbv3tb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bloomfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0727rcjr1exyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swift Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0734f9fg63js2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Larned\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/075mkxkw6cqxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Back River Waste Water Treatment\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/075zr2s17jzd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IBM West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/076wbzmgz5rs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/078c58jglgm8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gardners Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/078fzm5c7jdm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Battle Creek Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/079p5hl6wqxxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DFW Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07b9vt7479d5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockport Energy Associates LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07fg761zmrkb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orion Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07fl5w97qh68d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hat Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07fw22p3h0rxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oberlin (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07jjsend92lk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Rock/Slab Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07k15cmwlx837\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Troy Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07kfkvy1jxlt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trigen St. Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07l7h6l969mzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forbestown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07m22m7htpe6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07nwj985rkwy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nove Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07r1p69g01rpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS Arbor Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07rqt3ry871w1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07rxqstet0w36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Valley High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07s0wwnwerxeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07v0fl8ybygx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Currant Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07x0hhvw3s133\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Canyon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07xdztxmrzk2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Road Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07yggkyfzbex3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wanapum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07yhy3e4t3nf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maple Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/07zqg48bl37ng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny Energy Units 3 4 & 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/081xt1qj3ced\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Harper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/082pfc83rkc7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chamberlain Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/084997lmm8kfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/084jkz3hfc2tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buchanan (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/084m2yx11h271\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stone Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/084wzj19jvez6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brighton PV Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0870h8gq5k1zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powerlane Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08b5xsl1fqyp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rush Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08gns3qt56y9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08kjv27m51k79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08lc0ztc3ztt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bountiful City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08lq2c3ply8b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08m2rbg7yqwtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Togiak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08n7emhp610k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Valley LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/08vtr9n5y79gh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/090xyy62t4vb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Virginia Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09222d5hjenh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Prince William Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/092mbtjve020d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holsum Elm Dairy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/092w37nqr4jh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Four Mile Hydropower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0978d3d8ym2vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 250, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09993x94qt1ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clifty Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09cdwfcc97n7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Playa Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09cg3vmzrgd16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ambler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09dnbbhcq7434\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Segundo Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09f2d7f5wvt3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allatoona\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09fdjnmh8s62f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09hm37h5ysq85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hay Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09j0l4pv9x8h3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharon Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09jc24qg55p23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartzog\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09kgv7l99tpf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodbridge Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09lqlx7tfn8r1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Byllesby 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09pnb37cgn763\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rochester 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09qknr5x8t3r3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09qvhh2yynsk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ormesa I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09r28z22k1rk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottonwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09sd78qhwn0v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warrenton I Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09tydm5hz9gpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09vrqk7c5ehq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoover Dam (NV)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09x1qc2t9j55d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schiller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09y6vjl92fwjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09yk7yl8t1w1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Liberty I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09ymmyk6zsc3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoover Dam (AZ)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09ymrt2l75n98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Bridges LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/09z1vbr6nbcj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OREG 2 Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0b0k4mfzdhssc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glencoe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0b43htpxm67vh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lloyd Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0b4wberfk320d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L'Oreal Piscataway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0b5kes37k52j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chace Mill Winooski One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0b6g5jcgyc2c6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mocksville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bbjv1c6trct\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bbrgn9zmfm88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E W Brown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bcbsfwzjcs24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fremont Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bdpfc3qbjlpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Houston Chemical Complex Battleground\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bfht43q1004b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swift Creek Chemical Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bgrf0xkrs7dg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"US-TOPCO (Soccer Center)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bkp3mhcwt2jd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ble1pknwjj51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kings Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bvf8jx8qj68d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bwe16fbq60t2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0bzzrc6j1bxg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G W Ivey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c1vc1mvctdeb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Energy Shelby County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c2yv13h11s77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hickory Ridge Landfill Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c3ffzj85vre2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carters\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c4fxmvmjf3mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Creek Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c4rbx5t99331\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tecumseh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c4se8bqt0kx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #05\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c765m6mg3zed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Short Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c83vzmfk2fd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BRE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c8mk4peejwl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drews Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0c8zjk9v8fm41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cdspfrsr19g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles P Keller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cdzpde8rnq7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cegr3vn7rk39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Hollywood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cfcevnk9vvz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cn9gs8ypv5g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cnkgxlvypd48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cordova Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cr9kz524ppb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ct2f3cepb8zg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Meadow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ct7n5ecwxysg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ctfgqf5tp5x1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sequoyah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cxbb4ys5e1df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cyh4hjfgb9vc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0cztxft0rsgqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milford Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d2fgx143lpcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d3h4fsvlxq05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d3qhm0w2y228\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laho Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d3zbvbbs2ce4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dearborn Industrial Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d65hhfwn7f31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The City of Vineland at North Vineland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d6b8r25db9j2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L'Oreal Piscataway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0d8cvq6lvqbe1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Du Sac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dbh77e9wne3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Urquhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dd5h0mrgdw9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmers Electric Cooperative - Kalona\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dddpqspgh7v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Clair\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dhg8nqpy064b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Community Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dkl8dn2wyzy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arizona Western College PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dkzspg92xde5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spartanburg Water System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dq25ld958xf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Okeelanta Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0drdxqhcdpex1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherry Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dv21sqgl51z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"One Market Plaza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dv3m6dmv52t9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dvw14e6p49v6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Prince William Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0dye3czhmbekf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite City Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0e0czssr92qd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southern Current One, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0e0dbv05be87d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waddell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0e1wbh5fhntk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnson Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0e31l7h6pt595\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0e7jmcnxtyvz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #13\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0e9y5nd72ml42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0echzydbyv346\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Putts Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0em5vmkjrslt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Catawba\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0en3cn3pmj802\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waihonu North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ep8rls0lqh65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steel Winds Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0eqhqksv60t17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Roserock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0eqllz9pyp3kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Breeze II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0eqp37ddk5hl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bluegrass Ridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ev0y073p2g87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brandon Shores\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0evcm15cd7f16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPS Power Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ewl0lrypk6m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millington Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0f21e9pkeyrjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Remmel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0f45q8skvstn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0f7y96ntbd296\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"National Raisin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0f8nw32l8h2e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elwood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0f916jjbt6d31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fcpkpfr291zb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MillerCoors Irwindale Brewery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fdnnyfrpmplb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ffeftern3zvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middletown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fhrblcwepzg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wanapum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0flbnbkwvw2k9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GREC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0flre54y73cx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sundance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fmdf8w5sdfvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croydon CT Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fnc8f8vfz8h5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"General Electric Great Falls Upper Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fs51mn968rm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ground Water Pumping Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fsh1jm2fqes2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sowega Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fx0djef4gqdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fx88g33de6k9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crayola Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fx8vdf2ehwh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EC&R Papalote Creek I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fxf81w4sttd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dave Johnston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0fxwxb4w5h92f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CF Novel Solar CSG Gardens Five, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0g23ysenzpvp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dayton Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0g2nj8xec8pp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gravel Neck\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0g2w6s1tpgjk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gates Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0g4lpt5hyzyv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amalgamated Sugar LLC Nampa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0g50t8e2ptsjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Creek 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0g7387yq1ze1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fries Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gblfq3vlwt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehorn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gc4hxbktrqx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dave Johnston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gc5m11z2tdwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MEPI GT Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gelyddhmzm46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Hurlburt Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gffw0qpq3mb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gg68ze3c8nhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pleasantdale Road Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gh67x98bb033\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #07\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0glec5yfgkpj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gnpyf18txm1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gx29ljc42bmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE Feely 1 CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gz4cvc0lyzx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WrightSun CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gzd3smq7c973\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southampton Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gzhfeyz3hc16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kit Carson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0gzj9x6xbsy2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunlock Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0h1b3m5hh0bdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Mountain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0h2mzg84wk742\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0h2qv89q29es1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockingham County CT Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0h5wn39h10s4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lieberman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0h8mpjvth4646\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shady Hills Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hc1lgxwm6xhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WED Coventry 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hdd243g25r3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Saugus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hf2tvrrpxmmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DADS Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hgqhv6wb1yf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Luna Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hgxjcys9nrl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryan Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hj5spccz146\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dover\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hkr5qggwbm37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wise County Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hlg4j2vqfxm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnson 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hmv4mzb0snpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enfield Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hq14l8xmedbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Lindsay Hill Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hq9bl2f44005\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kivalina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hqbk2f2vt2gf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Generating LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hxmh8m60j9fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pixelle Specialty Solutions LLC - Spring Grove Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hybhwmsgyc72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0hz8zg4098ldg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OLS Energy Chino\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j0kb1z2cq79h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sub 3 Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j0svhw7mydt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brownsville Peaking Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j27djc40gb8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mojave Siphon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j428txbszv37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j5gt8p0td3sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j5qbmz9pjtp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kramer Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j63hqmnd5kef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stafford Hill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j98v04xnh777\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia LFG Richland Creek Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j9ybzk83nwz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Francisquito 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0j9zsw7fevje\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Creek Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jbk7qfw2tqnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kiamichi Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jc9ykwr64w59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hillsborough Hosiery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jehpvwdyt917\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jjwe0qe8swt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jmyx7e07qsv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maquoketa 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jplj2838ckm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Carbide Seadrift Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jpxxq58wzlzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JBER Landfill Gas Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jst6nxz74wwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Mobile Bay Onshore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jvxvdwv4w544\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Island Hydroelectric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0jxwlvnw1bpg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broken Bow Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0k2nf36mhhlh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indigo Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kd9x09fxqbn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Lake Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kek0kr5r9273\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswego Falls West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kesqhj9088y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneseo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kglff2nhhdx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nacogdoches Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kh1es6ecm0q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TNSG North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0km270c4xntnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation CDCR LAC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0km885vgbznfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartzog\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0knr12961dvk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgetop Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kpnpht0tdyh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kw6rlj2t6dl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tiger Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kwhhq8yk96md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marceline\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kx2gd2pxcs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor Dry Farm Ranch B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kxtmwdm7q1eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler Municipal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0kxw28nqfccx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"US Magnesium\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0l544rlc0dphg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9107 JBS USA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0l6kv50htebh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Antelope Dry Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0l6w72bybqp9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maimonides Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0l84bs36ve1wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Pond Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lb5h08z71qc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcanum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lbprjej96clg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elim\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ld815g59mw4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moselle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ldb932t6ljv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lecxp44x7sg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lfj85vd5dz87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SRI International Cogen Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lgpr52x700ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Beaver Falls Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lgsy7l1x843d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 2901 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lgw41vn9d16f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CNN Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lh5h07dsvl23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lk6q97nwgx74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry L. Oswald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lm3p0k275xbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Simcoe Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lpt6lwj63sp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lqkmh3pxxbp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Poplar Bluff Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lqnhr086qew8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LSU Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lrbc3dxhjdk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NAFTA Region Olefins Complex Cogen Fac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lrfz5xjjwjg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lsxqbtc5vrv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Buttes Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lwv4ty1q36zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danskammer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lxm0cz5j7szg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Bethel LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lyz7c3z77h13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dion R Holm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0lzybnrqpw6s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dart Container Corp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m0km5e9l6xq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m0vrfb8hqx69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osceola Windpower II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m0yxqjbe5h21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cymric 36W Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m1jqpvhyqph5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buffalo Bear LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m8pbwsmmfhv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Permian Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m9nj7pqc58yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of Massachusetts Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0m9pdxm0w1bvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bushnell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mdfld9d67r\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agrilectric Power Partners Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mdkxwzv1vw98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harris Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0me8y4wq1zn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alexander\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mk2cl966wz67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mmdx3d15rczf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watson Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mne933qvw4h2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside (OK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mpz3hr1vs2f7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ghent\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ms23w2ns16j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM San Diego-North City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0msj4xpqqx44f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Point Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0msmt8chtqzd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0msng26l4n88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mtytqrp8vmp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greensburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0mzgxwxtnr938\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John S Rainey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n1l90thvzv9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n2ypvel0jpl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Rancho High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n3s9vy6qwc85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Mountain Storage, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n3vvv86s5m1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mascoma Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n4chceyb95m3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n7el15t590cb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller 400M\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0n96qpqs2m53d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SoINCPower5, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ndhwsvd4nky6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Street Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ndyyhs39js4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carthage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ne3gl6zmxhhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Statesville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0nhvrww48hwp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Champepaden Wind Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0njp5nqz95wp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lighthouse Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0njvjj61jybh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dickinson Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0nkqsstvrztz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny Energy Units 3 4 & 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0nmfhpsq7cyeb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing BWL REO Town Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0nqh9vzw6wfr1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wayne IC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ntpq02c5cdvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LaSalle Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0nvp3f6vpv8bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colonie LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0p1ptfj2p11n7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gosselin Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0p2t3tnh5z33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IKEA Jacksonville Rooftop PV System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0p7608mmq2jd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lemon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0p7rp77w3t21b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perryman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0p9mngnrv2t84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Warrior Run Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pm96qyg3x0wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunlock Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pmmzgjteefr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pnv6e47v1sc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minneapolis City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ppj7sevvsce7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Creek LFGTE Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pqngeyvyy6vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lorin Industries\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pqw8kvql2x9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sandoval Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pr1w5sgckdn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Oak Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ptrf0mscbf1f\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOb4wAwAAAP//AQAA//9rtwC6UQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
#>  [2] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Bryan Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ptvqtpzxmgy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pvj0eg5r7xr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otay Landfill Gas, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0pzc5sdstb0w9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Canal Hydro-1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0q3nvph1tb1c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brush Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0q47kxz2642e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sarasota County LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0q7qg74tcwcv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haypress\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qb4terzd3x1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turners Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qbdc3b2rgjr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greater New Bedford LFG Utiliz. Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qd6pf4r4j9jh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellevue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qf811lctm55g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L'Oreal Piscataway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qfl1n8lffb71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qfv5trspjhwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qmnkzxqdgf48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AC Criminal Courts Complex SPE2, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qnhg2fh21w12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ida Grove Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qr0f9yc37w3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Riegelwood Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qtt4l45zf3w9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erie Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qwyx833dhzxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilroy Peaking Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0qzdytp5rq348\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fuyao Glass Illinois Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0r4648wdbzs8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California Institute of Technology\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0r5qjr4fnw7k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roseton Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0r66l50pn5bfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stebbins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0r8jc4ptn4m4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rcb0dn5qqtdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0re2dc0srhd28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wagstaff Farm 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0re821z8d2gyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Labadie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0reqkrz8kn403\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cecil County CCVT HS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rf3t610391e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland Church Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rfdlx1mzmrn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia Power at Swainsboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rjd4snnf40l9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upstream Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rnf07qtrge92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big George PV CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rp89t686hke1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W S Lee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rtg6ydmty9fb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldwin City Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rtqtswle52hc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Terry Bundy Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rvf8pr4fmcc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rw0kwh0he0b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indy Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rx5v6vtc12w1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rypmev6sxdj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ludington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rz0g15dkv169\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Linde Wilmington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0rz5rgwemhgxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brea Expansion Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s11v7d9bz3l1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek 8\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s24bmttl3wf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dartmouth College Heating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s3f30f20dgf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhinelander Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s4nbhnndl0x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camanche\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s6fn5fw4qkn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ketchikan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s8fvrj3ffrw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goal Line LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s8s4gpdyr3n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reusens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0s8vzsgm172vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Francis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sbetxrtj43w9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sbxntvdhplbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sce86983m654\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merrimac Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sdq3nmm9e7dd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Corp - Nekoosa Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sgrwq4bh21g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeBary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sh3jpj1nnr6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clifty Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sl4ldd66lxb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharon Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sl79wn92x0k7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OREG 1 Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0slbp3wx26r29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marina Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0slncv98l6bm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0smhm78hljcr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sn3z1yzrg53d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springfield (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ss20m3wmfkld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ssxssq36k9md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bavarian LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ssz4g2slwp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comanche (OK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0stkr4n37zqz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jasper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0stky20z9cvvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falling Spring\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0svr9tgmktb1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Georgia Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sx3ksg7ymw1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0sxetjhjbpvm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Togiak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0szbdpl9n5v32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quinebaug Lower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t0rzgl7ep8d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walters\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t0zd64jcpe9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t228dz597e1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keahole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t3bek9lg7976\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Combine Hills I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t4429wlfdsb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Ox Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t5fvmm3lb48f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watts 3115\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t5wjc2n6dsd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t640xb1rkw61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robbs Peak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t7c28w0q704c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parker Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t7nb5616vzl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brookside Newark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t8tczmzfw9k5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nacimiento Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0t97l7eb4ckg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ames Electric Services Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tc6h007m0kz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chili Bar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tc88rk8khw12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Purdue University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0td3shfnmvm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0th9mqr21fvf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Bend Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tks5m5jekbyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Peak Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tl4l994m2cb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tq17fb3hmsz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tq395dk1sx6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tv3mj8pqkbf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chestnut Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0txbxkwgxwsc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CalPeak Power Enterprise Peaker Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0tznceyvpnd92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deshler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v05ht2fxhnhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Valley Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v0758tscjy27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v0c72dct3bmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v1330ed0q3p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson Reuters Data Center Bldg H\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v2hrdchl578f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cymric 31X Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v5mjtpmdjd2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Signal Hill Generating LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v6nrs9w2wrw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Memphis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v7eezk1sqb44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hanford Energy Park Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v9fz9v3l9vd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York Presbyterian Hospital-168th St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0v9ry09r0vy11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vbl3gyf076bh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palomar Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vdly3evsy5g1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bladenboro Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0veds23f61sd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magnolia Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0veywbhb4w5t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WHA Southbridge Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vh3k6xfsr4td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sycamore (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vt92dv92es59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lyra Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vts13l5htzrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dan River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vv4wn81elpx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kortes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vv5pz6glem52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawmut\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vxsthc9h5f25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vzbd8q9ne9d3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mint Farm Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vzgbdtrd6hr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merrill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0vzr71kqpmfkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlanta Gift Mart LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w2h5r32hy28h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Duane Arnold Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w2k0rtv8ze63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wooster Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w46rwqh2lqq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apalachia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w4e2nvkzg3df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fountain Valley Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w4t0yjh11rj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hollister Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w5k519yjh6bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manti Lower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w6y092l41rs7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Middle School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0w7b50q911nnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rutan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wesgmv6nh5x4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Childrens Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wjwrd9jkjx8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Basin Creek Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wkfmyh7bjb82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Preston (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wn21p209e685\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MMSD South Shore Wastewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wrcrtgj5fsm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Davidson Gas Producers LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wrz1lj0td2b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nelson Gardens Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wscf7grlm5p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sub 12\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wv7l3s40l0lg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morin Solar 2013 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0wz597fcdxt1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jewett City 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x0112kxrc30f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x2ef01vc85e\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optimum Wind 4 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x2sy66mxh7qc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x6mb60n2lyn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x74fkymlf888\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garnett Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x87f7ns7ty82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delano\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x9hhtz6d88g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Antonio West Solar Rooftop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x9nh9v6pql99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osceola (AR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0x9q9drvxzyr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Georgia Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xe1qgtpxzde\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kellogg's - San Jose\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xm1vxmq8w0m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"433 Purchase Solar NG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xn3rjn1s2ql5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xnz6fkexbte1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Asheville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xpcve6zbvf16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shell Chemical\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xptqrr8qypp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopkinton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xpwe1l937meb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apple River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xrnhj1q3rzr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xrpy570g5rz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeBary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xv747vq30gr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Middle Peninsula LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xvyqp0nerr99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Alamitos LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xzg2h8pbeeq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quantum Pasco Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0xzxxqe1gpfwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Star Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0y1vxdh9rbxq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kasigluk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0y1xgmrzdzghg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Two Ponds Windfarm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0y23jzp4071t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"George M Sullivan Generation Plant 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0y8zeqelpmrv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caithness Long Island Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ybqmge070262\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oleander Power Project LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ye8g9c35q9l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yfneqb63zen2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tecumseh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yfqq3jqrmtp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoosier Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ygyw8rb206t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Evander Andrews Power Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yhn7lwjtv383\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornelius Delivery No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yk839bk52ps6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Penascal Wind Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yk8wvmz4wc93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Water Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ykk23tsg4ty5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yadkin 601 Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yln7ypz7w235\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greens Bayou\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ym30gwvvxfk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boeve Windfarm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yqwqnl2p64l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyger Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yr8fb14emkfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pacolet Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ytl8q1h2gjlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Letchworth Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0yv8ry32vmd48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turtle Creek Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0ywn8hbw5w6kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunflower Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0z1txkqm00nm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Menominee Mill Marinette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0z48mew6f3b76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Charleston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0z6sxpqngvhpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcadia Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0z6yscfykgn2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0z7sfhfhrg1f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sandy Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zdm93s87wbh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zh50w89ctvdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zk2t141snt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Bridges LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zmkgr9tg7chg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orchard Hills Renewable Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zrd2652g1g0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cadys Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zrx0js8rm8gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bluegrass Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zskd58whqqy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nodaway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zx1yjzjwy0wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flint Hill Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/0zzy495ljtpxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nickel 1 Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/102hr0j3msgmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clay Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/102nn14bb3wv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedartown Battery Energy Storage Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/102x1bv30ef6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hurricane City Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/104t945ddw77g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Liberty Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1052xmhtrx663\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefiore - Westchester Square\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/106nkxnx2027g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Kaktovik Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/107ccv2rdj77d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Starrett City Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10b3nztd9d0b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ladysmith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10bs7x3x141zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10cfj3w58ts6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dean\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10cxzfy1805x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Benton II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10ezm87gtw7fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winterset\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10fmkwv81w6y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sonoma Central Landfill Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10fn8l9fpkft3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Celanese Acetate LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10h5df1bsq42h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pit 6\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10m4dqhzfwb7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Croix Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10m4f1th48d02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gantt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10mwtn2c5t7p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Du Sac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10pm373tekgkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bradley Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10t26wz30tfqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BioTown Ag\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10tx7y32nz9y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10vwpzn9lxn46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hobbs Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10x7w23elgbqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gila River Power Block 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10xht8jbhf913\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Drag LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10zjv9vy9vhqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of NC Chapel Hill Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/10zm4bxt9kpsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montezuma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11510ww8bp0ed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/119l27hllzjf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mills Anson Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11f5qh9nw0z55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11fk6wfhqxj4b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11j3qk9lhkbz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Solar Borrego I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11jyxfe96rr9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11jzh52rg1g7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vilas Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11ljrnvbt67yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corning Pharmaceutical Glass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11nwqd8ydsthb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11scjtzmz9n1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Diego State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/11wh3g6v9zz01\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Plains Windpark LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/120vmnp6gk894\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/122cpb8kgp1cf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Washington Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/123zqhcjr2lrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Rips\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/125cvkpjm27b4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miles City GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1265fnpnz3df5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bath County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/127q85fqwfpp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amalgamated Sugar LLC Nampa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12b5m0n3bhjs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12erwsxkmw45c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Batavia Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12frzzxrf3grg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greater Des Moines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12h2g95l4d3b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Point Beach Nuclear Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12hr5rb35hntf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellevue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12k0c93q9v8q4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation SaIinas Valley State Prison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12kd0ewge3vk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Valley Solar Gardens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12l7th5v2z72d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Outagamie County Co-Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12lr7q4fhwz24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAF Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12n3evxwemhpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keswick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12nbvkqkc38g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kentucky Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12ncgx0knk4f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jett Creek Windfarm (Burnt River)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12nng3q7f34fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amalgamated Sugar Twin Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12pbhfyrygt58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Casey City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12rcfhxjdh0y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Rita Jail\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12smy8r87gys4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12tqtqhzns112\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newark Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12w332jdkj142\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12yej11kdbtw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waddell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12z86f5n1xegd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Flat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/12zj31yd1wlg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/131jjrfnvfvfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Edwards Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/131q27948vvv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Linden Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/132f3f3f6ws6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noble Ellenburg Windpark LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/139rvhg3cyjgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Clara Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13ck7mvyhxwm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Browns Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13dc8kk91m0eb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colleton Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13f5q67q8hh5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheat Field Wind Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13fb9xk3v2s9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midlothian Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13fhwy1x3lwjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cosmo Specialty Fibers Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13fxgql68fpnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Hollow Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13h25ewk0ly1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turrill Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13kwfd9djjhec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13ng64gf78b8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13q1xckrbdk35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pejepscot Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13sxp0m9sybbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G McNeilus Wind Farm Dodge Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13wjvvttjj98c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McManus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13x76c7slwlxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Nation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13xc6q4zfvwp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gibson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13y0k43lzhpvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lenox\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13z6pvrbme219\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisconsin Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13zp088jvts6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedro Hill Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/13zp9fs1edsz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baconton Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1436bd74vwbw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yakutat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/146h015eg2tm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Alamitos LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/149n6wv45kbfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SCA Cogen 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/149rwj2c2b8xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baker Creek Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/149zp9eb44kwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14fnfk6jphdc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Michigan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14frwchxek4v1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14h7wzrh39yfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solon Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14jtsj4hsc67d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warren County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14jzhhbwkrenf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keahole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14l565f27wqzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrence Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14m89s7pmwj0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westrock Hodge (LA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14mhbtyjfc5c1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakin Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14pzdr78cjvm7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14qvpzxg16sn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wessington Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14tgy894skp1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Pine Hill Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14w0c1ppbrq56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syracuse # 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14wztwqny2ksc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeastern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14xqycdy3f0h1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14xrf8hln3wrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockport Powerhouse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14yj84qsx4079\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Houma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/14zbvw578t812\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perdido\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/151zt6fe5m4e5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodsdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/154z0fblv81h2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snake River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/155e18n2z8txb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hurricane City Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/158w17sm0sw78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 42\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1596kqkfm4g2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant Energy Neenah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15f0y1c4kxql4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15fkrq60n5x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springerville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15gvdmnhzx82b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15hkfwdmxep9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hofstra University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15j9pm5dq752b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15jf163j6llqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayonne Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15jm4nwk29ef4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bypass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15jmlt1evpzgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelbina Power #2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15krs0jg4hp84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Constantine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15lfp03d7rp19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry Truman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15n02pfyw80vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotlik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15nqegl85cmy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant Cincinnati\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15pysbnwbjgbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack Watson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15tqee0pdv0gf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"510 REPP One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15vmk2lm2c4j6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ivanhoe Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15wm4n96d69pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mayfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15wtthv3rvrx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Macys Goodyear\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15z8fexc1732c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Olean Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/15zkyge0edvr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Hills Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1607e5bwr9p99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forward Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/160zv4cpymxy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nine Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/161e3ylql3we4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1648nezvpnkx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Asheville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/166sh51rg0ywf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nevada Cogen Associates 2 Black Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16byqt2fw36v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16c4x418kwy43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Poole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16ckg52jxg53b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pella Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16ddl129j50t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trenton Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16e51x0x6w4p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Searsburg Wind Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16h1r3r4y2vhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essex Junction 19\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16h41pgye1383\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16jewpdycd892\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16kh9q56prh6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SID Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16kn4y73fj2t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auwahi Wind Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16l7bv26hq6bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skyline Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16lh89zgvl1bd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paddys Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16ns9v076cb2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Valley Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16rltpnhb3j97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Clinton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16s8t12js05v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DOE Golden NREL Main Campus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16vwm1q559sc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16xtvp1lz03f1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/16zjf8zst4h87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darbytown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/170rp0vd3klx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merrimack\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/171gd0bwqevzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noblesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/173d01d3gwy65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shirley Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/173h76qrfbq47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"VMEA 1 Credit Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/173yxz720r453\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lenoir Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/175efgb6bjd26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Akron Recycle Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/175gtpeexnl6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17669hzpm55sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sundance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/176efklpxt0g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Bear Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/177nvzp8lksqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastman Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/177w4mnvwd924\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apex Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/179c5wys026yd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wylie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17bh109y3tk44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EDF Renewable Windfarm V Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17fms9w687by3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Joseph Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17fp7sq7nvfvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Phoenix\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17fygwdekgdlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bostic Delivery No 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17glmx117ejl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westbrook Energy Center Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17km3hrm4pj5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McFadden Ridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17mcxrpft90f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delaware City Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17r68rfce7cn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17rdx4jd5qck\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Acres\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17s88bz58ysc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kimball\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17t7k4bbf7y29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lagoon Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17v6pz0rlzpph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minneapolis City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17vg8bs0twh5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Hampton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17w3xcfjtgkmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falling Spring\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17xc1mfc36605\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deercroft I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17xwqden3s2b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe County Sites C, D, & E\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17y85z1kbzjw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wanapum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/17zywcmd6h05g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/180sllrhx84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/180w1z2d9rvm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salmon Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/186hqh9lb6xqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18759gcy412n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Bluff Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/189d7tmls7mj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Flat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18dhqekvne601\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18ewy1fnxtr6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18f8x3632p04h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Countyside Genco LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18g2kb6k9vzj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18hn54xqdkdng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartwell Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18j1hpttzpq7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kalaeloa Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18j7lpyc7q2tb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croydon CT Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18kr7v90yvn53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18mlwcg10536c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buffalo Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18ngv1hp519z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ladysmith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18q4m18edvdx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Akron WRF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18qy4g1n3hz05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"District 70 Transco Gas Pipe Line\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18r320vwydxbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AP North Lake I, LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18rfh173j4ww6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danbury Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18t2twc60kzj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medical Area Total Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18vscxs4np2sc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Falls (ID)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18wf6b5kdjp09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Kalskag\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/18ywrmr9vbkm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suburban Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/192l3djh8h4hc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ambler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19309sm1vtl12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hauser\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/194w1b1vvx5w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1952fdvnkf829\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Racine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1974q25eqc23d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sonoma Central Landfill Phase II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/199gmbqqgc66b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galion Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/199sprdvywcnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19dky5pksblv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Ninth Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19dyrfr6r5bb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocotillo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19e51jqjh4w42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willow Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19eshs83wjej\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barrow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19f02wnjkkvm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sleepy Eye\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19f180elx0yp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gorgas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19f27mzf4z6y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19k9qt0ffxgq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sturgeon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19mdy3mc3fktc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Packaged Meats Corp.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19nvketb60sn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colton Solar One, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19ptpmlqvhkn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19regww8z0mmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19s7dh5zglvc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19tzy5y62sek3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19v05s0mcfhqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/19w4qz6kjlb52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Holyoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b12yh4d6hwgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lindahl Wind Project, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b5g5zdgs4ng6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b5hhr1mcfj28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b79clkhlh7x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anderson Wind I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b7pf9y6cdypd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Beth Israel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b8xqsch936yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blind Canyon Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1b9vtnr9l89x1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Com Adam 1WF-1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bd50hbk7h2r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Purple Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bfjrtje1t6jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Branch (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bjtlkj18bsv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bpvvgcx3mmp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malaga Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bsegnt1y0c31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laguna Water Reclamation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bsy8vrk094bd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bartletts Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bwh7xqkybk0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blackburn Landfill Co-Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1bx6jljdw7eh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Logan 1 Community Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1c2s35t76x029\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loon Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1c4q280pzkxk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1c4zyew2lckg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1c6kdgvpvwkmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Bravo Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1c860mqcdh9gd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1c9z938cvchd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arsenal Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cb8b0vs26vv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ccsqq64he6vc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caprock Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cen6zrrk1khb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garnet Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cflc5bnjy2zg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyrene\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cgft85lr7n5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B.R. Sartell CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cgsgwx8xz7bb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cjehslln3gv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coopersville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cjxg0hsdpvv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cm9gz2sswxr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cp1jc4elfpe4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archbald Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cpje5pfs487h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biron Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cssjqdyhk3c2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timberline Trail Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1cy2nl2vkf19b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Paloma Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d0b8dww2hd3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alameda\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d1bkz3ldwzn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"George M Sullivan Generation Plant 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d1e2dsh0bxn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d280bprbty42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Francis Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d3h0pdjn1xpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d3nxbzxck407\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pittsford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d4fd7hw6l1dd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gateway Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d53s9z47wj0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tyngsborough Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d6rgn9qf0sd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayswater Peaking Facility LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d7cd1pxsr5r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sleepy Eye\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d7rb04cheytg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Knoxville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1d9xwl3ttlej1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lyons\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dbkr0rhn5186\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dd3t8cgdqep7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goldfinch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dg9byyebq044\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Borel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1djn9jdvbhcg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chiloquin Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dkgd43g870r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antares Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dkjrpx8w8bjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amsterdam South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dlwn0per165h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dn2tzl5bmfxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Lure\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dqrdlwss7f4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dt8r1jhd5jt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T0588 Phoenix - AZ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dv0s4blxdwv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Herkimer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dxytp59kz409\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seward (AK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1dz2jvy52xkp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pendleton County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e0rwqx1xd3yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yellowhammer Gas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e2weeq3yecv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockheed Martin Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e3czvdzrepx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e4xsd17ct47h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caney River Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e5tr57tgj5sh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Progress Solar III, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e691bh4d49kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Rayburn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e78x331zz523\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watson Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1e9xrvnl0c8r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport McMoRan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1eh6l440jvwb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ehbtn9zyjkdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Andromeda Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ejcst28tr0t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ejpdkq9yh9b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1en1zl9mll583\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"York Haven\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1erq681wb4w11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Nogales Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1esprl4l7ryl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santeetlah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ev8m70w0b4v9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beryl Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ex5589nmjjp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ezm86ycqrk3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steel Bridge Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f1dmc3q0cqr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f1hd8elx2fxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilmot\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f1hvn5l7hzc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f1q2gt3ts8b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Causey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f2rmhgz94b1g\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOV6wAwAAAP//AQAA//8vLhpbUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
#>  [3] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Stephens Ranch Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f431weq4yjm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f503mzsp0x79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mon Valley Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f677zxl8xtpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f6dvcj4034zb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magnolia Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f6njzhssj5sh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Castle Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f6svqhyztv05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alta Wind VIII\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1f7k4f1cxcsb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fcf4rts1cynb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oneida Herkimer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fdyt2m74y06f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weleetka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ffxnf4590v13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Halsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fg53lx39b088\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fgnenm86zpf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River Eastridge Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fjh6hkvsjsbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Augusta Electric Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fkryyngglwy1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles R Lowman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1flt6l9860nz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springbok Solar Farm 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1flv6vyw3jvb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hendricks Regional Health\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fm81n85kg5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beowawe Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fn078bd789mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greater Sandhill I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1frje8ns815qb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parr GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1frvm8v4d59k\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Piedmont Hydro Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fry5gr229vw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colbec's Corner, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fv9g8840mtz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mashpee Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fv9gbxl68rt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of Rocky Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fvqz80jpyb75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fwzx9hhrpgx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Plymouth Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fxhcnetdzqwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mecklenburg Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1fxrkl4pczz72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellefonte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1g0fdw5phztv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AEP Churubusco NaS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1g245qdz6ppyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noble Wethersfield Windpark LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1g4n6rg0q1e75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1g4npnvs7tygh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Birch Creek Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1g9mxvr3qmghb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LRI LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1g9x4hp1p1v64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rokeby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gbvylcsdj1e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Benson City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gcv6cb28rsy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cashton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gf13ssx830jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atood II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gfd7c4v92l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stewarts Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ggcdn3vl4zm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John H Kerr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ggjb6m6grpmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ggn34tqlexmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W A Parish\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gj4y5txvppm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biomass One LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gmr4v3qv52z3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gqkskgjyg1y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Lake Holdco Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gvlztvmn2qvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gz6mg2cn15yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GREC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1gzdnvgkt07lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Navajo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1h0ejzjf0fmb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1h35zxvhdlx13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1h4whd5vtx1sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Batavia Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1h5q8jywshev3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1h7f8yz753de9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TA-High Desert LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hej3qnx59fb8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willow Island Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1her62bj78p3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alta Wind Energy Center III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hf8y5jqkvys4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pittsfield Generating LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hjx3dfx297mb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hl0zmcp05zp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hmd6vxhthw2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panoche Valley Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hmpfhvb2jkv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hqf9n6pjn6y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Santa Ynez Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hz0vrs7pdtl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rousselot Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1hz20dsxnb3zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Blanc Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1j0fexerd5694\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spicer Meadow Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1j9qf6g6sb852\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MMSD South Shore Wastewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jbr0d6hq27z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William G Mennen Sports Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jc3xtlf4pv77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mystic Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jcdlvnnn28s8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W R Gianelli\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jdz30jk8nng2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYU LANGONE HEALTH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1je4w72wxtbwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grahamsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jfb4svf5gqkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Axiall Plaquemine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jh0j9r9wwqlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairless Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jp0w1pzcjgn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 64\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jrxsp79ms6d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jsg5zjrrc8pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atwater Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jtqcdngc8vzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Douglas Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jy76ty5ssrl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WED Kingstown Solar I, LLC - West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jyk1nzbj3gcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis Palmer Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1jyzg4xxpkk68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilroy Peaking Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k127r2kfhfh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k2xtctr3qy74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nebraska City # 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k3w5btj19m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Acres\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k438vz648s7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quail Creek Hydro Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k4tqzfe8wyc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barrow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k4wyjyn67hg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acushnet-Braley Road 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k7s9hgq8ewx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dresden Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k8tc7sc3yc4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hector Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1k91qvdkqghgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mobile\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kfkyskvsp824\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ivanhoe Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kmxfbf9nbl2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midland Cogeneration Venture\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kn77mlg1znxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lennon Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kpc9xq7pbmg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Northern Iowa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kqxfk0fe1jp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orchard Avenue 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kr7474qm2fjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rathdrum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ksjst3z4dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York University Central Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ksx9rews09q5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Building G\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kvmfzy41r5z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Inver Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kvvpylv4753h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairfield Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kz4g3342h90b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcanum Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kz586pfn1zb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GL Dairy Biogas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1kzgj2sggth01\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Point Hope Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l1bnm7kf1by3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Valley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l2j08x0ycpjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l2n2jpc5ydy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Green Solar Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l4w6w3brxvmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Actus Lend Lease DMAFB\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l60ygjgqgwpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Joseph Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l7r8fbpzjms7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Crossing Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1l902s49kg0z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Havana\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lcn31k4v61t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lgqj4dhfq2j4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lhr0cmechkvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lj073q1r2kwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lon Wright\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ljn4yxk05em6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newman (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lkr3je06m7qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coso Power Developers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ll2yveke5j53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MontSun Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ln23w2sp34q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Telogia Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lpetc5jl877g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boltonville Hydro Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lpx3dpb5h2sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ada Cogeneration LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lq17x6p8tkp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Staples La Mirada, CA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lrfpgpf14mgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bushnell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lt7yvttzkrrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cheatham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lw71s2tkb4j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IND Solar Farm (Phase IIA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lx1gqp7xl1p\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higginsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lz49er8mjw02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Belridge Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1lzvk3pgc0n89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1m0739vjkdqx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Community Foodbank of NJ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1m0q9m0b8r7v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Total Energy Facilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1m1vjcnpq3dj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1m217ssb4yv42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solon Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1m31b56g31bph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wild Horse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mbfy1wl09zwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ironwood Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mh3vh8tdnzw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ozark Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mhf5ye6cns7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahoka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mhhqp7d694g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshalltown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mhq2qcyp7sdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmers Electric Cooperative - Kalona\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mj4kklfdqxhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Point Power Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mjcb82l2lr65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Creek LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mltwt5hstnvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carthage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mq9ct675gdgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lindsay Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mrdzv1vexj6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pittsford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mrs71xl4fkc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo Lundquist\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ms4mwfbtwjd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barber Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mv2lgbmxsekb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pyrites Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mxds9dky5g6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Live Oak Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mynydxfm4lyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canadian Hills Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1mzlg53666371\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nebraska City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1n0et45ks3jm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silver City WWTP PV Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1n3k5154z5lm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockingham County CT Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1n3p75nf13r04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crittenden Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1n3pxlc36hz93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White River (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nd7fgey9k1y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Limerick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nge6gs25h3kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algodones\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ngzb2295fyr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nn819rpnnrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Michigan Wind 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nv20mltdqhyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Permian Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nv6ccvl594j9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Alaska Fairbanks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nx4hclfxw3h8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bennetts Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ny0dterspwgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wintec Energy Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1nz1msfcer5lf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of Foxborough - Landfill (SREC II) CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1p14ytt8k1wh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moccasin Low Head Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1p6fjddrvdvld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Valley Solar Portfolio Holdings, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1p7zrdhmv0838\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W S Lee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pd6gt7x60xn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hanover\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pe0k6xfwxy6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muskogee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pecw7wt0xcjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higgins Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pfde9dtz53nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vestas Towers America, Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pgb1gh95zg18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Low Moor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pjtf0txggch1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hastings Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pk3n04m9d2cb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Bethel LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pl34ejkp72m5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #05\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1plp54nzgj2t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gulf Coast Solar Center I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pm2gwdgehh36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockland Bakery Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pm6yjhe8h063\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Shore Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pmec6ewptjrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onyx - Pembroke Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pre4dd07gzrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flat Top Wind I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1prhh7y9bmgy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gateway Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1prw307dsy53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Earth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1przpyjzc4436\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand View Solar Two\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pz21sn7vbme2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Androscoggin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1pzkv0lgcpp2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Battery Utility of Ohio\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q020fbke76lb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rumford Power, Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q19k0sjsfke6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wygen III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q2l9we0y0svc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Faribault Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q38lczzndtx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack McDonough\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q61m1z0x7f2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Delaware Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q79f3j5vdzng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gordon Evans Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1q80cm82x61qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Sugar Coop - Scottsbluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qb2q86rlbpd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Georgetown Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qb70etwymvgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qdc1m3b0qng3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Tree Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qehhf6f75q0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Longboat Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qhvjpcxd3j96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Humboldt Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qlpxs9s11ld7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cumberland (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qlykfgwgsw66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm Street Substation Generators\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qpevkj5jk472\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CFB Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qq4k3stdtjcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Consr Prods LP-Naheola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qtccrdjxmhl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Penobscot Energy Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qvqtw87bqyd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baltimore Church Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qvtchs6q14zg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland Farm Services\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qvwl6lwzfnk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qw22t5hnnrvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ormond Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qyc4n4djl8vh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottonwood Solar, LLC (City of Corcoran)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qzfptg2nq3mb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qzlfrs3ejns9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dahlberg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1qzn3r6cmtlsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneseo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1r1zfjz9fq8kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Rips\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1r38b2hx34v39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victoria Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1r61wbdlq5mjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlantic City Convention Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rbmw60x502xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ITT Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rdd6mfhshlf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chestnut Flats Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ree0248lqfvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cane Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rghx2697hvvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #17\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rgxxj22p9k17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magic Valley Wind Farm I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rhrnzj7clwj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roseton Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rk816bm8jk04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L V Sutton Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rn3ys3e9mtl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ford Utilities Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rplrfkwekjvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cactus Flats Wind Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rptw4fen8wm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northern Lights Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rqqg0yqjk0k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor Mesa Linda E2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rrf6yb1th6j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stateline Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rrsrj457n1dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Depot Hill Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rxeqylgexz26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ryz6v3sf4j\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Athens Regional Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1rz41kxxvq0n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cardinal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s06vp47kd2w\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellingham Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s0715g10s1hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Bluffs Diesel Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s0vxm6byq2z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s196qy0st5t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPG Plant C Caustic\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s4225jqkg1v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s437tzj28gr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rolfe Canal Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s4kqqmxbndb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s5ecxmybftq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1s6j0z1plky82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterville Solar Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sc0zm8mp5xb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"265 Pleasant Solar NG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sc6rzm65jdp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Cliff Limited\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1scf1klnmbhl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UCSD Fuel Cell Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sdsd7123kxsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elgin Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sdsqgy8gdjt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeastern Illinois University Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sdxljllz1y9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pendleton County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sfx5wl1cm6fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sg0svst92qt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sj7se85f3k71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Howell Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sj9ff4z8snj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sjvn8252cf5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nichols\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1slfwhk86rs9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deferiet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sm5e1lxjt269\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ben French\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1smvwf0gyl0g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1snhy4j317p66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountaineer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ss0kjz3x8dmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Axium Modesto Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ssq9czlsjtnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adams Community Solar Garden III LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1svz2tpykttwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J K Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1swq6gfnp77rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T B Simon Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1swv9ngdd5dvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sx0kfhxgffn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grays Ferry Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1sznej1k24yq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medicine Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1t2eg1q4nj6p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bloomington Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1t2gtgqbzlg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jim Bridger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1t2ysgz50emq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genesee Power Station LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1t468thlhhzjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGuire\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1t5x1x80w0yj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dodge Center Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tc6egjkrbv9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1td2gfx8b7yb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1td9ggbssj12h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1temskwnf7h83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noble Clinton Windpark LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tgg8f5sqd2n1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Cedar Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1thc8nl5tmdl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairhaven Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1thytfnndl56d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tjf9k14wnd08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Meadow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tjxj1ty6yv1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutchess Cnty Resource Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tk1rbm60pkg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kapaia Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tk268x81j5m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tl43t0kne7pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Superior Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tqb20pl0ebw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ttjtrhjfmepf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Collins Pine Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tv0hb3mwf1bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1twkq2d1x727f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saddleback Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1txg3bzjpjhzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ty0x7n87fmr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Handsome Lake Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tyw5ctwtcndg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dynegy Moss Landing Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1tzrk9bsy4st9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Rayburn Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v459bt1qgc54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Divide Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v4tcvxd588fg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheeler Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v62z7kvzy1b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Musgrave East Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v6477zkylw89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northern Neck\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v6hl76kmfnwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v73db2t7nmfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kentucky Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1v9mct39vtlh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Majestic 1 Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vb0jqchr1x6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vbnd1kk7ykmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spanish Fork\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vfvmk9q0ykpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Animas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vg2ry03drks3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vg5rbe2ftdd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk City LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vhlsmdllpz02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Main Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vn773491f9x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huntington Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vnqxwdxmb544\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Johns Episcopal Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vp1m3m70zs15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vinam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vpckhvhd66jb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hadley 2 Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vpclw6qhvshd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clinton LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vplte478z5q\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Placid 12\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vsq0bsc2893b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bullock Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vssfxec64g2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flat Water Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vwwpl194ghqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SMPA Solar 1 Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vy0r09q5wle7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moorhead Wind Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1vyezhk3mp0ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MU Combined Heat and Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1w04yzy3gfjeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W R Gianelli\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1w104hywee4z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reusens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1w16n7wqgkqd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1w4tjx482rnyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1w5skf1475fs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crown Cooling Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1w7h3mwec9ye6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kelly Ridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wbq45zdld162\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nelson Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wev19vh7xeh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamilton (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wgv7wf6d9mt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copco 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wkvnl69klt42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lon Wright\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wnxsemjm16l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Point LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wqwkgzdj1e58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chelan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ws3bf6t5g8z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunterstown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wwf1glxtfx61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1wykzsvz4d9c9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soft Maple\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1x23nb27xjzcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnson 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1x3hhedwspmeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Athens Regional Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1x8wnn521khv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornell University Central Heat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xbfdrcyf0be7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silver State Solar Power South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xdbn566g3ez6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM West Covina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xdxld263j5l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Davisville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xe6g4hz5s5y5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Michigan Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xhzed93j1nq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellevue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xkc7g7wnt504\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erie Coke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xkdy5pzm2e08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gunsight Mountain Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xlqcpbyt7kpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Breeze III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xpqflrtcw9h6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Penascal II Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xpsg1hlg4gk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Catherine of Siena Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xr4wlh40df0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DSM Pharmaceuticals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xsmn8mqb5k7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marsh Run Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xt4b1t4kq33g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xt8c75e7n4b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia Mountain Community Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1xtllk5t4bhg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lloyd Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ydjbnrxbmg6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plaquemine Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yedzf2fc5xc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manchester Community College North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yg52qm3t6qsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yl76vy68ctc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elbe Solar Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ylth8d0xgjxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Municipal Electric North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ynkl6bt7xdk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ypky9v9prwz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lodi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ypvth7cynys3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pheasant Run Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ypws6wm51d9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dafter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ytbtsqp7412b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gramercy Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yte807c47s77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mine Falls Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ywb3x0807775\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Community College Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yxlwmhge6yz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lyons Falls Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yz1xd3zkr5v1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Model City Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1yzfk4bg7clb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1z29kyh459bn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Crosse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1z3rljge02x46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern Oil & Refining Co\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1z6q0w8kce0q1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medway Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1z8zhg835y0h4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zc0fpm1lll4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zd1m5h42emw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith (VT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zes1d34gxeq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brownlee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zmedpz4e3dtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zmf15nl430w\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"D G Hunter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ztcxlqg7e2xh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherryville City Hall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ztlse12ecez\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1ztz1jcqeefk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W A Parish\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zvp2hkk9vte9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cresta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zwvev4jc3c0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenup Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/1zze3p3l5s912\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unionville City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/200gje938wd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Downtown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/200slt1gvdx5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock-West Point Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/200vh3k4klqp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Menomonie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/201c79egdtcbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domino Sugar Arabi Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2038zljnv7vx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/204fmxgys2205\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pawtucket Power Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/204mvzynt58h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminole Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2055hdkyy64fd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sartell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20566hn07s8k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Beth Israel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20bqjnvbe8g55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Koyle Ranch Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20bwpw14rb366\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Priest Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20dbnl46se18f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Delaware South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20evrfzlmt7qc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carthage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20ft69w0s9dy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Technology Drive Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20h7g8mwrpzb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tallassee Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20hj2hf2jtlp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kerckhoff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20k0zw6nhwsdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20kg7mvdj8e07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20qnl457ms9tb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20rvsv0888yj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay View Backup Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20ry8n3nyeyvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wesleyan University Cogen 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20sjw7zlzldgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashtabula\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20swkfr47ge7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 63, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20t0ybbkr7908\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Urquhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20w44nseg4gw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Control Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/20yf00mhpq3y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flambeau Crowley Rapids Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/212l0v05z0d67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altamont Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2148ffnz3yxdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shute Creek Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/215fnzrlx8hk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/215wvjdfl3q15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bar Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/218jvyxb31yz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sentinel Energy Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2193rjdtxelfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frank Jenkins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/219tqwqtgpv48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fontana\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21b4wvklc26j3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cheyenne Prairie Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21bkd1ye0eyv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lookout Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21bvqs8d1dfqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21cpnrmn83kb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelbina Power #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21efz1xtkqbk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21g3zhpvdzx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keenan II Renewable Energy Co LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21hned1yyj538\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belews Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21l2cm9fmfxt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warsaw Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21lsd4rr9dcvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Liberty I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21mpgrx5rygm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodall Gas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21qp5vh1xcre2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L'Oreal Solar - Florence\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21qr67by3tdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Ridges Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21xn9t9e8ljdf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Mankato\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21zkb9w4sltl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/21zmnwzfxy8t9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McClain Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/221by1m94z518\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edwardsport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22356r6mhbwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dam 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/223d8kc0tp5y5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fiddler's Canyon 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2272ctn8mqsr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/227rpdw6pzen8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Audrain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/228etbcyqj45f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Linden Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22be0e844nxt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22bqn4j2xd9j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingfisher\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22ce4z1rrszkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berkley East Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22cylt6w21021\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22d1y0700pgmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hardin Hilltop Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22ds12z6klbx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Water Reclamation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22gqlck062mbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE Feely 1 CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22j5z9cp372y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danielson Wind Farms LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22jt71r7hkw39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort St Vrain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22kgn3xcdm6jf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Benning Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22lj91gyrqdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylorville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22p97y8v36etd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Oswego Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22qs3k4lc0wyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exum Farm Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22rg7v3dffgx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney A Murray Jr Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22ry042m4d4vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Iowa Main Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22t0037nfvm11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"491 E 48th Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22vyc6nsgggwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Bravo Solar 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/22xhz379yj108\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/230zv34ngdf07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lilly Technical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2315skkgc7z8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/231e6emrkgef7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Randall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/234bex46nqnm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ursa Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/234nqngewjwy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L&S Sweetners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23531dtsmrpdb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fulton LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/235qw8yc7n1r5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forest City Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2382qdhr31r96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BP Naperville Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/238mmz9rw7gh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amsterdam North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23fgyv8r90hh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ferndale Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23jndd3pm964b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23kshzmzgj95b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Framingham State University Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23kxeckgss513\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ingredion Incorporated\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23ls2sfqhj5y9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pejepscot Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23m67tx1x0f89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhinelander Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23q3vrgyvwb25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jonesboro City Water & Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23q63kjx6xjm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maiden Community Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23qmrdk8c0wec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Guernsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23t1kqkn36lg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23wwpx1rmvg07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23xemm2y8lrmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Water Renewables Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23z26wn3jbmx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knoxville Industrial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23z33yh59wv86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/23zz7rcn01046\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Solar 3, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24054rwpnbve3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aurora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2418pflfx7jl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24239zs5dcdqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2423v5snx37md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knoxville Industrial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2429dz957vcg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/242ml50ckhgnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quilt Block Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/243990cp3m7r6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2439fvyhh2pg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frito Lay Incorporated\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/244gqyd2zwdn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burlington (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/244m6xdycl2qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bern Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/246107198cz9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2472d6qh5ryrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24935w5xcy1n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24cp91q4nlsv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 250, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24gs6fht4cznb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Framingham State University Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24gzekm72wcc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"York Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24h2fymxczhzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henry Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24h9e2ww6pv6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24l69rnqqwxt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salem Electric Department\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24lcq5wyelmb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Graham Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24nx4530f6xw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24rtxc3y0sl65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneva Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24sb5j2j4q7t9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Badger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24tmlt4txpt9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler-Warner Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24ttjftvw1vyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S&P Windfarm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24vv8rswclmsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snoqualmie 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24w8f4xb75blc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chester Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24weyev6by9ef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mongaup\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24xhmktpdwpdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greens Bayou\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/24yt62w7ktt87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/251rr0msf11p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blythe Energy Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/253nc5jdp3546\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Myers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25431zd0zqb7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muscatine Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/255512nwpgf4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor Valley CC CPV Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/255w83q0r9wf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Point Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/256cgefr2qll2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25946lr4tgjvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clifty Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25b0rx4gssmn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sprague Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25db5dpgycfs7\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOe5wAwAAAP//AQAA///zkYbpUQAAAA==\"}"
#>  [4] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Hoot Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25h9m0tqcxqw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erie Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25kh60njwtfh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamesa Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25lwxdbvxvts3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25n49mx1zt5v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haworth Water Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25pt0r7j9w3s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland Center Renewable Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25q3d2yvbcge2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegany Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25qld4wt4tf3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25rek8s9nzrg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flat Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25s2nsg9zs9gf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wiota\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25sn4fkfhgeb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leggett Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25tvmnlmc9hk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25v2k48m8qtbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"V H Braunig\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25x7pgyd5sjgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yorktown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25xc7qzfx9vp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carson Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/25ygx30bfq3l3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haywood Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/264gb6se8m9xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bernards Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26c3dmf0383m2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26dzxyf1ybejc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spruce Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26enflmev1jd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 1656 McCarthy, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26gncb0k87m63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"USS Good Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26hd4jbk8bnt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Humboldt Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26lw23tevp1g1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabine Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26mpkvretnr8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decorative Panels Intl\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26njx423jehr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camden South Carolina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26ny8mrfzhhd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPG Riverside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26rqr7qe2r3nf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26s6kj6r8qx2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cayuga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/26z1y9m015742\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olmstead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2702fy1cvgsx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kearsarge Uxbridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2705me2j99l3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wahoo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27094s05zg2pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UMMS at Pocomoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/270k5fgy8648f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson Reuters Data Center Bldg H\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/270wv75fx4cf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Androscoggin Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/272bn2lcm24r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montana Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2746bm0phkxj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management King George LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/274r8nhmc2ey7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Butte Wind I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2760rqbxz55q3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/279dtmf90n9p\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clarke Solar Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27b614xlb5fcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pretlow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27c0lb0qx7j16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Dorado\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27c4hetpv7s66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MEPI GT Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27dp217q6jbhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harrison County Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27j4r80wb7p43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DADS Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27lnm7r0852wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goat Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27mfvcl9bht37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ty Cooke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27mt54zmnf294\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles E Monty\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27pn6qn5cywnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Salmon B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27qrspexcm26b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Hodges Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27vekhvhr12l1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William Paterson University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27wkmdlxkrqbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fayette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27wqzqeg8ne13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Procter & Gamble Cincinnati Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27x15rwg17y22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaw\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27z4zxcm38v77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keswick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/27zddck7zqf0g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medical Area Total Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/283yy1x4p2vz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fresno Cogen Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2869nzg02b3f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherokee County Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28875wzpsfjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28b5c9vv4wch5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I 95 Landfill Phase II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28bz674qxzwj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shute Creek Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28ch5067tzrpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyrene\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28cn3kpftm4g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28d9kj39g79w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warrensburg Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28dgq93t2dge2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comanche (OK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28gb9ncml8r1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tooele Army Depot\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28l83g6kqvr2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green City Recovery, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28p3mb9kkc82c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dane County Landfill #2 Rodefeld\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28pdckmtvxdkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28r262lxxwnj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Olean Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28sepyhb5kqp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28wltyw7lyj3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SPA Cogen 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28x94hqt2v033\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9107 JBS USA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/28zygjb4b10q\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osborne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/291m7d8fxh15g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/292gg250czyz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crockett Cogen Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/293v2xmbqbhv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cheoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/295rxvm3wpzfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buena Vista Biomass Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2966sp0we9xhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CID Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29dph3p3wybgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chattahoochee Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29fxfpv9e6rlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osborne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29g0n6ch9e214\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sentinel Energy Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29ljpxcq8kwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NorWest Energy 9 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29lpyfd7q3z6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of San Francisco Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29lrp5q6pqxyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpine Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29m9z8qg08kq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CED Foster\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29pn3letdekqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mojave 16\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29qwvfedhf864\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Oswego Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29rqtsyb4d39f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gila River Power Block 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29wgs8vshpc93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldwin Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/29zvepx8hqjm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sartell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b0r5qm848qp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marmet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b0rt0y08kg06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffin Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b13stjh5y1l8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"O W Sommers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b150sqw4c6rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco San Joaquin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b29ec5qcejzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grayson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b5bby0yk1r46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noble Ridge LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b5x8yjbxr6tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notrees Windpower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b65kmkyek0m2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Story City Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b6j5v7tt45ef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b84rl4lrt91d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Channelview Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2b8bk28kl6ged\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buckeye Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bcskjqh63le6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Mesa Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2benby70xw0y7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lemolo 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bf9cq4s17gcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cascade\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bfbvst6z9sv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bradley PV1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bfs27d0mrtj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bg1wt1f6vvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Omaha\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bl3t532yynv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Faulkton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bm5pnd1tez2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE McKenzie 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bsl829925609\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk City Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2btm9tbh9zs68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant 31 Paper Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2btzzewk6yjn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bvz084f9dlrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drop 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bw8g9s9xd47d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #13\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bwbbn9vzc9d5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Side Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bx0nl0lkfe36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kalaeloa Renewable Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bxwk221cm7bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2by6b21tylf3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushaw\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bzs51c7b09y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Sterling\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2bzsh24sx7qbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"A G Wishon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2c1w890d9fy5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Porterville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2c32nc4tct3g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gregg Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2c6t1293q38c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2c938yfj70rtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cbyj1cktws4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ccsn8q7et7g7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cd68rg7kvt44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cdsz984kvf41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blackstone/Tupperware\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cg8qfk2rj91h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"U S Alliance Coosa Pines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cgpcndph0k4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cgx4bm3lgvbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ck33ylpceqtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wood Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ckpnzw7wz1w7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Double C Generation Limited Partnership\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2clj6cx5kfq6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silas Ray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cnwq51mm61vh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central District Wastewater Treat Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cpetbslzfb88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keys Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cq09vrkn6wh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonny Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cq31qtlw1hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ursa Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cq4l9v2hd8fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2csbww0vq7qsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Church Street Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cth9s9ldr56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chisago Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cvdhvkc4ys3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Axiall Natrium Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cwf51mz280y5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Water Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2cxqlvwczh1c3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d0dt4wzdrdc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d0hcjh2ypq77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldwin City Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d2c9wsvgjd48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Vicksburg Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d4kxgsqmtqd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brown County LFGTE Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d4nfxfq72z9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Porterville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d5sw0wlxty57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d5th8wq69trh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lancaster Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d6svcvyh6kg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d6ynlnf45xm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaweah 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d78grn9drng7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Masspower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d7vt0s4h1pwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Porterville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2d9w2tr29se66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene Valley Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dcgshhlr1wgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dekj3qplkz73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis Palmer Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dhqdxyq10bm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CBP Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dkez9kbv5f18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dl9mqqkh3tld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Davis Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dlzd2gs8j8e4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chemical\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dn2xhsgpbx26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dql3fjfepkdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Murphy-Brown LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ds6h63mp8247\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G W Ivey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dseepm11e6m5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls - Saranac NY\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dv3zc717hv32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Old Hickory\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dwvh3y8e38n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Musgrave West Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dxefh29rceng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pennsbury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dy57lbnycf53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dye5d6313lr1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hadley Solar NG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2dzp784qbyw9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Kansas Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2e7l0bh92ykd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2e8w3mq2hvv22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arlington Valley Solar Energy II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2e90bl4bm10yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hill City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ec3500ley471\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Cedar Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2edls4j9ved43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Port Hudson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2eej0ybxse7qd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2eftnxqspqel2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Georgetown Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2egsydz6mtsr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fontanelle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ehm91z5grxsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hancock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ej8d1vwgsk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ejd0sx5cle79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delaware Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ekbfw9wh6ks3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hampden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2enh7ts532fk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ontario LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2enrhyj93wkb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NaturEner Glacier Wind Energy 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2epgkrcxq4p3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocracoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2epw8syrhj03g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Larsen Memorial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2es7cvmw32xj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auglaize Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2evdclw9vzjp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mira Loma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2evkeefdd77mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Memphis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2eyc7r8x6kld5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quichapa 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2eytn02jqs652\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgeview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2f1jp6jrqmtc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imperial Solar Energy Center South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2f37ekse3rzt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wakefield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2f3t55kcvmg2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2f59p7wxwff2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Difwind Farms Ltd VI\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2f666jzd2hnvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Graniteville Enterprise Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2f8ycfj8x3mw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Coxsackie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fdr9ew2wbm57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agassiz Beach LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2feg8q949r0e9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G2 Energy Marion LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fesn6ksepcpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fflnrw5ccc5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calligan Creek Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fl6en87sekqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Duck Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fl8r0bvfs3ed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMEA Flora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fldfetxb322\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilman Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fmbkw0tjc9z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Lynn Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fn4s2xm1wd86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MU Combined Heat and Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fp88svfkgxp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fpcygs7phgwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fs2yqx1lhmt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nelson Gardens Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fscgr4m8hv1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alabama River Pulp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fthqmwrw2m55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ormesa I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2fzv4fvrcn219\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crossroads Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g0rrhl2h3z68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midway Peaking LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g1nyveklg955\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9107 JBS USA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g227rt8kn9m2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Castle Solar RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g4dv3xmp9366\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walton Bainbridge Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g4ptgm2p0cw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clearwater 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g5tb7j2f6305\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Owens Corning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g75m1mkstf8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g9nw4tb8x8cc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenville Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2g9z2xxb1kk5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drews Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gb8rsww20p29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunrise Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gczlsemmn4jb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Island Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gf40nfpr8xf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottonwood Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gfkjqb9sv5sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder City Betasso Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gk2r3rb199g7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potato Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gp5bkvw4ker9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chicopee Hydroelectric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gpdqnnlkl64d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gr2yb00fqrfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gs50d2xgmmd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toray Plastic America's CHP Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gtzyh36k4mw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Sugar Coop - Torrington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2gzz7g9d2ylrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h0ck0n6g5qk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Portable Generator 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h2k1f6y2bgzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nalco\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h30vfl6fv377\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h3w0zlverzdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuscola Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h4r0f9q44v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onyx - Saratoga Springs Landfill Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h5mwqvc064kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coleman Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h5v1ym6d4wf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Edwards Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h65hdr8ct53c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holland Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h671z3glyrz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yards Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h6s84tw6lghg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carthage Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h78p047x38c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2h9737d926494\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Citizens Agawam Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hch2sd7ns0r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dean\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2he0sxkjlq442\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hhcy0jj4l186\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Athens Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hj4nrqmnl5hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Group Data Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hjsbz9z96qhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Loop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hjsw1tmw49b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Statesville, Highway 64\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hkhzmd7k67p7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Street Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hm66ntq4f8b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hmpbwbmb4vtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeBary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hpzfs7xhxef4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pegasus Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hqqdpb33hpg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richard Burdette Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hr9phx5xzgqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxbow (OR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hskqe8rv1zl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nymans Plant Microgrid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hsw9bqj2l1z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sappony Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ht1jd2zqjvz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Catherine of Siena Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hv748dg4vk2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanai Solar-Electric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hvjwte3bkx1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Limon Wind I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hvzcvjflreg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winnebago County Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2hxjx0h30enq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo Lundquist\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j3krby5psq3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indy Solar III, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j469tnc77wn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upton Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j4vsm953rps3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rainbow (MT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j66cypdh7fy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dicks Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j6tdgl2z38wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j861dnxe6q68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raccoon Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j8f2cvkbskb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crescent\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j9p2x68g4rv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia LFG Oak Grove Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2j9ycd5wtxbt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Astoria Gas Turbines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jeryk46w8e94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brookfield Power Glen Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jg1mfh3ksmbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rensselaer City Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jhg8ejb61cbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Meadows\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jhpn0e6bryq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delaware City Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jjb42g6csvb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jn3vy06ftsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk Hills Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jnnm2ct44efd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vogtle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jrh7hrlnq8cd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monson Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jvshvvwylc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jwjws5gdtsmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenleaf 1 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jxm91z1srwjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebble Springs Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2jyy5060yh9jf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clay Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k0lws2vejdh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blueberry One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k15xq630mhf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k1rlg7q9ks63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k2qzsv2v5pgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabert Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k5x4f7vnv1eh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k7ygsztl5x8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2k91rzyz7tw35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Choctaw County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kcflb6lzyttg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kjv4wvf5b5r5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2knb26ggtbt24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orrville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2knl11c7kwknb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kplj3vegv2rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYPH-Queens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kpn3fqkq35z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kq6tbffyy3gf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sand Draw Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kqswwdrqfw8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Langley PV1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ks1fxgzp3kw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Twitty Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ksk7drn4z86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TVA Southaven Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kvmyn3yxqb2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Santa Cruz Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kxmq1t5g0nv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2kyk056wskws5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Davenport Water Pollution Control Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l24vlcfszfdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warner Lambert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l2ww2hh6qwg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winnetka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l3yvr41r07k5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waukegan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l4jcf71tf425\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adelanto Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l5mrg1qnsjz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodleaf Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l5yzhd6j8zf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l6d6jjvfvyj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l7xphm26lb49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rush Springs Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l80260whphhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Senita\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l8mjs4vxtxsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Astoria Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2l96eyc5x1x8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lbxqket7dlqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Strawberry Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ldd6876dhx44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rapidan Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lg6kh3mctnz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Valley Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lgfpv63ljxr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #23\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lgwx394gth87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Missouri River Wastewater Treatment\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lht31v9n5c65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B.R. Sauk Rapids CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lnrw3xlcsp71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"O'Fallon Renewable Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ls60sxl6kf0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MPEA Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lths2w88dqed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marcus Hook Refinery Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lw4z3tqm4d73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manteca Land PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lwpss52thzs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lwshz4bm1xhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sandy Creek Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lyg8becxj74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"KODE Novus I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2lz93l5fd1fl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Acres WM LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2m2qck2qz7yl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ravenswood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2m4tjbq550q91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Claytor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2m52140mk6pch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Bluffs Diesel Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2m6m9twdyccgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Poet Biorefining Lake Crystal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2m760y1cel459\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Methane Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2m8q7k1n9mpg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockwood Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mb4dmlhrcq97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYU Luthern Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mdlz97lr6dfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Sterlington Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mdqg6jf17px6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Everglades\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2me0gnxervb65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cosumnes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mf5zkf3ste56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mgrdq6e0mhqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dartmouth Power Associates LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mgvh1ww40021\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlantic Coast Freezers Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mjd3mhsstl29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AL Sandersville LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mk1ep3yy2mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wanapum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mm8lzdvr16q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North English\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mpqly796hfh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ringer Hill Wind Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mqb1zxrcxjb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caltech Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mv9yxjgj8jv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mwbdhqr1sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Energy Shelby County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mwc5lvl98wh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brame Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2mzelqr1nfjr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunset Reservoir North Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n0bcbw9blgcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Maple Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n2lmbsbh1tbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Pines 1 Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n3wp7fg63qrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky River (CT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n49f66tq6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Route 57 Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n4dchwf6w9t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nebo Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n4rdryxsdpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pontook Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n5ek77becl5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amethyst Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n636v9g0eelb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ben French\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n7z2hxr3n2q1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T H Wharton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n9e9mtc587s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dane County Landfill #2 Rodefeld\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2n9xysh5dve51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warrick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nb60s0n61et6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nepkj9grk4v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nfyc1pwwrvq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miami Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ngc25dj2rtw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox Metro Water Reclamation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nge0k9xe43cb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leonardo Wind 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nhbx0gg5rt12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deming Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nhg4y5lhmx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wood Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2njdtf91q2rp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nm7904w9jbx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Neal Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nmqel6c3h12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Coldwater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nnf613hrryx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canton North Carolina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2npm141n24799\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haviland Plastic Products\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nqhs4cdbbbpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cooke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ntm85w11ke77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ingredion Incorporated\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ntpbgq2x4z0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lancaster\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nvek53dxwkx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pisgah Mountain Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nw4dmjt8wt86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CT Resource Rec Authority Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nxlfen7395c3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cuyama Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nzc6v2ef6dg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2nzegr5rqebxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Joliet 9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p1195jpx742d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hastings City Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p1cy0d5wetyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Eco Vista LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p2wsm2j7er73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crete\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p385r2kbz322\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p3c1fzn8sm7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Corp - Nekoosa Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p3f3b5hcpd0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Audrain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p7m3fkwdyjt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p97jgvzsyf8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marmet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p9f4r4m5f8q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dover Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2p9qwz0zksvlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Moore Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pe0yrgx5rsj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Big Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pg94n772rpz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aidlin Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2phv8n9rt6t5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bennetts Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pj5rf1f00ryc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pk2xmmcfcfpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optimum Wind 5 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pk8e5067lgcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vitro Architectural Glass (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2plx03hbxyee5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merrimack\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pp422hxenrvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crestwood Dothan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pqecsdcgs242\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montpelier Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pqxhf1s996y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2prgd3rk96p73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Westward Unit 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2psxgn27gm02g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mooseheart Power House\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pvkrrh603te1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Energy Shelby County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pxlngbxn2sq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pleasant Valley (VA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pyzjzvbe7fhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L L Wilkins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2pzg1g57v1q25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q0d99f8qdhy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lorin Industries\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q0vvt8x894g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winnebago County Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q2drk9gbzh0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decker Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q3g8s98bhrpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montana Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q554ch4q5v77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yough Hydro Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q5vyvrn0l2w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #06\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q6c8yce34zq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowerman Power LFG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q7bb8nv2wm6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Felicia Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q7q2h45kgtj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"National Raisin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q8dh3nf2wk7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2q8fh01rcxyg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R M Schahfer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2qb48652d5202\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2qch52h7wk0w9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FPL Energy Illinois Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2qgmhmxqn4kj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2qnjfn0d7e4vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roxboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2qqr0vxnzlrx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waihonu North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2qyde6mprglf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valencia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2r1t0qplmy698\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Detroit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2r2hdv1whndw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DodgeSun CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2r6s0lrxtpjz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2r7vw2wq3t3l9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Etiwanda\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rbjt5edes2t4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baconton Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rej4dvmhpdl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2relfznrb8ev2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montville Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2retgx0lnwbp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Hill 1, 2, 3 & 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rm20phn5l749\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheeler Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rmhlgzrr9ry2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuana Gulch Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rn2j07hpc1p4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OlivePV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rnblv8nkb4l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emporia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rsc7vvkghy36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rvr3gxyfsedc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rx6bee8xwcr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tait Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ry7tmjlr1py2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flywheel Energy Storage System Microgrid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2rzsp4z6erzt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s1tllgr593wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saranac Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s21mkk45gj52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s31mvn0rv10c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Philadelphia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s4l6r59kzte6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s524h1qpv233\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Miller Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s6z9jrte0jw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Navajo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s7cm8ftymcmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IRC Generator Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s81tvd14fnec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ararat Rock Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2s9b9w4zyd1d3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Worthington Generation LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sbc7fev22tw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northfield Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2scrhtpctpxw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galena 2 Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2scrmme7mx0l9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fayette Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sexv73269ewc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NJMC Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sf8lfh2qqep3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2shb7xw90m8qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EAFB - South Base\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2shpty81bsd54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edgecombe Genco LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2skfpm5y73rgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sktj5mmvzkcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midland Cogeneration Venture\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2skxt8jwez0kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castleton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sr34q0h6s5xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pixelle Specialty Solutions LLC - Spring Grove Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sssbjrqq5h3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenansville Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sv1wtp9dzc39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sxj24eyjl4b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skelton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2sylqfy9h1ev6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Falls (VT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2szls9vz0d8w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t05fqrdljxyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Radford Army Ammunition Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t0f9twen6vb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushman 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t1v9hnxhm9l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Gardner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t2c5dbzblkn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Point Hope Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t3lpk3rtwjg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intel - Ocotillo Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t5xt7mddhjz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gibson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t6272egeydw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Libby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t81nxnwry333\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mead Coated Board\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t8ytj70l0gb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Warren Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2t9qq5x8ds4rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cumberland (NJ)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tfszwdcykfw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naval Submarine Base Kings Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tg4d0e1gls67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2th07eyjzr7lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2thb4mxrm1m56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gladstone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tj0jzpry9khc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ben French\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tr1jglmm3bm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia LFG Pine Ridge Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ts1m8703043f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lilliwaup Falls Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tsq3zhzjgy68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LSP-Cottage Grove LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2twtf9fdwx904\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Electron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2txy5h2nccc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Des Moines Wastewater Reclamation Fac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tzbkefm6jp48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elmer Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2tzq32kk48ht1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tessman Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v1lxqxmpz9y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Padelford Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v1rvnbgvsgd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm City Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v2kxl6v4x4e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magic Valley Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v2yldg3vjjm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dearborn Industrial Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v59v2zh38y34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crete Energy Venture LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v6dre8kjnrsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Wind 5 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2v7dbbj7f4q36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vbnh7015v5x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vcy69fmbysv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis H Stanton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vesk8vwswjq5\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOS7wAwAAAP//AQAA///mGl5CUQAAAA==\"}"                                                                                                                                                                                        
#>  [5] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"East River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vk4kst44ykc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastman Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vrln1rkelgj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Georgia Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vs892gxttecb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vydvyhmnpyhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2vzwmf93l7e\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monticello Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2w12g72yef8lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jewish Community Center PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2w2z3wnlzj0l2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Reach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2w3nxwj8gm1l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CCG Marketing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wl098xc7tzt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kansas River Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wn53k3fmcjn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Packaging Corp of America\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wn92dhtbsyc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern Bell Telephone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wpev2r5f2c4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Providence Heights Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wq1s5wwvren9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tipton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wqyr38bdb9wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Point Power Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ws1hywm94cwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ws38g129dz9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuana Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wyrky5kce6m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mongaup\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2wzfyy3s0qhqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Low Line Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x1l8fd0m2dl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Equilon Los Angeles Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x26dz3ntg122\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Johns Riverside Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x3t78zw1ke52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roth Rock Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x633kgtkgk3b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shoshone (WY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x6dtqgr5s342\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Pauls Solar 1, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x77nwh915wg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilman Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x94hxbyb2er\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Maine Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2x9y7g8hxh353\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hell Gate\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xdc7nr3dezmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Springs Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xekq4nygfef1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windy Dog I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xev2me2nyxrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of Rocky Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xgyerr0n49s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PCS Nitrogen Fertilizer LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xjbrzlgt8hr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack McDonough\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xjc14qqcmnwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite Falls 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xl511mjfetc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eckert Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xnt1gx1f2fdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genesis Solar Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xntxj60ntxkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Anaktuvuk Pass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xrcx1hq7tte5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ross\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xsp197rk8gm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Slocum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xt7gxerlnz5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xwvsnyqv2l1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodsdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xxzlc4n7xs45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waynoka Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2xyswst31clgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McLeansboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y0hnqbj9y494\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y3g9k3xby6f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y5tnkxnqeb9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y6nrty9fwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Edwards\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y74p0rtbv0sd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Diego State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y7ybrpt1fzs2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2y9gd7wvk0xvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fulton (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yfjbbpprqmxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ykmm1eknz6n1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Kalskag\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yl1dbd0y1rj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crescent\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ynvfpwt53318\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kramer Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ysewhsgttf59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2ysvc67fk1162\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Improvement Dst No. 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yvzqqg7rdbvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Flat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yxxk0wcbf7q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belchertown Renewables Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yyps7j1014t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flatiron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yyxr4xem6sf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deertrack Park Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yz6m930hvg46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of East Bridgewater CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2yzemc3hxb436\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Sterlington Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z1bd4de1wdgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z1fcvj6zk7h6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syncarpha Hancock III CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z2zhe7r32k5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mystic Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z32fpvq9yl58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tilton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z3v1p73g52rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elmer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z3zkjg6wphk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mass Inst Tech Cntrl Utilities/Cogen Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z5y1jh74702d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Medanos Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z5yndcwcps81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flaming Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z86zbyvq2clg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milton R Young\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z8c0nt53k2m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ford Utilities Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2z9ynkmyh4dwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zb0b0y72qx0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alta Wind X\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zb0hfnb5cns7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Myrtle Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zbyw1jlg2r8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northampton Generating Company LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zc2zh23mycs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magic Dam Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zcr208n3j8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cheoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zdtd9322sjb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zfekwn439gb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brent Run Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zgmzr7mpxh1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Acres Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zh7740k09l37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zjd9trrbvzzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmer City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zjtptxy1vbh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoffer Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2znydfl91wbvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cascade Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zwdzhg2zvq86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corpus Christi Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zwy67ppsxnl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County Meter #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zxen072486b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auglaize Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/2zxnkkbcxvmm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Empire Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/302zj7ebwx13b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T H Wharton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/303sw2pmgxke3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bad Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/308d23sdsybb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"K W Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/308nkkdey6cqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frenchtown II Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/308smr0d1tbx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Millinocket Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/309b4450xzbn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mehoopany Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/309fseh1xhkd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soluga Farms IV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30bk5sbpj2gsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wakefield Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30cqkkdb4dte4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30jlyn88zx6m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30kh43wzy14p3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30kr0q5dp1k8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EXC Wind 9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30n5kw724wv99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Bend Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30nh1wqs0czw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pemberton Road II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30nwxtnml9rhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Falls Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30pbk11hjxbw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pawtucket Power Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30vrq414qzew6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edwin I Hatch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30yqv1x0fz5h8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/30zgkpkb5f4r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MJMEUC Generating Station #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/311gbtcc76vwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/311j1zgt9f8t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bulls Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3144qms1rhf0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3156g8gj3m008\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Streeter Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/316zljyv1l833\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frank M Tait\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/318ep2emrthd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Front Range Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31by042dvsb82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valero Refinery Corpus Christi West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31f6l1yqxbw47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colgreen North Shore Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31j7jw2r6j5mf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sears Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31jtpqxcsbqt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31knljb9brnfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31njpept1gz32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBG 9802 Toyota\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31pxs8q1kns47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31qmdqe2z4gef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Backus Microgrid Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31s1dfn9xs9zd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Omaha\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31s4xv9r4rwh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Belridge Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31sg36jpzgry\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buchanan (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31wdqw82rvlhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falcon Dam & Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/31zph75qm7tt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baxter Wilson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/320p8enh5vpr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/322jfwexq8ep3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atkinson Solar II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3261wcehmfrxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pollocksville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/326kh94yq3fbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Williams Ignacio Natural Gas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/329b8vzrszwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moccasin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32cbyylwd3m42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rex Brown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32cgnhhcq84r4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Island Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32d9jnh13ygs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32dqyd7c6emy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redwood Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32dx7wrkzcxn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar - Woodland Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32f633z5p9wd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32hcp1w8e2gsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noatak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32hgc0bhnhb7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caltech Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32ktjw69m96fh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kent County-Kennedyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32kzf0smc7l44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W.A. Parish Carbon Capture Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32p0v2c4r2ly8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mosinee Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32qg8ypq34tt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32qz0lc1tev2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croswell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32r180h0nwe29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crisfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32sqgtg10krq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cummins, Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32sv34l33l8s6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buck\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32vge084ytcw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milo Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32w2rdm1ehnl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imperial Solar Energy Center West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32xpnmklq82d7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabine River Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32xv62qm9khe5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moselle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/32zse1hx3rtz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/330wy9kth9yyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chatham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/331zfknx3s0cg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coit GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3328rec7dzwz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solano County Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/333cjbgr9rer9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jay County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3356p7jbgydc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Proctor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/335zpqp2q9l0g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zotos International WPGF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3390rlgem0hl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Guernsey Solar Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33bcfqc7xmqy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chaffee Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33dl9434j8rk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meramec\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33e9n6pltmlt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33el4l6z15rl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Tisbury Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33fgt2pyfxh0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medway Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33fv0etfyszk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Middle Peninsula LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33jm89npzxynd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carr Street Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33jn9ny19rpfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrenceburg Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33k51g6l31pzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corcoran Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33m7lbc58wqn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33ntk91pn7xq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Cogeneration NJ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33pn9th5qmqcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Bank of New York\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33s2jypw562m9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33vrhkqlx38nf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WCROC Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33vvf44f2q04f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amana Society Service Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33x8p2nte1npg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Square\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33yd0rcwmgr28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marathon Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/33zhwrpsc5q2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CMEEC - Bozrah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3427mvkwkkcp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/342rzw200ktvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Lion Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3443gexx7m7t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camino\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34482xl8ywtlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlantic City Convention Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/344nb8sezwhl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3474jlb8gfj8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/347pvvc41z9p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olinda Landfill Gas Recovery Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/348jvmwn2h80g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turnkey Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/349j6sdeh0v23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumpter Energy Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/349jhg1y2rgwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potter Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34b2etvhgznf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"USS Solar Dawn CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34c0brg55952c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Krause CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34cs9jd3f403b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watts Bar Nuclear Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34erpdc2jp9q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MER Queens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34hxkn2l9kdmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rosamond Two\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34k1hmlwejv22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aspen Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34nfvlwm4se78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quantum Pasco Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34ptjz1b5sk8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34q13c4gqn8n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34qdpmwx3m0x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Call Farms 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34qm8gkvlpszf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knoxville Industrial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34r3s5kz4hmdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34sqjm6ljlbz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hines Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34zd52bym8408\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SCA Cogen 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/34zdezesl2g59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Baton Rouge Turbine Generator\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/350ydxy77rce3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3511m5fmm83e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bloomington Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/351w98lbt046h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocoee 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3584qqvbrhcld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Astoria Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/359wrt178r1ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Falls (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35b4mlp31rzp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Covert Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35bn4qkb321q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Craig (AK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35fbkxgxvl0r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barrow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35gk889v7gq28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Old Bridge Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35jpqs6mfd2q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holland Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35k7qxg51kf24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverbend Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35lf0tlj2mfh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35m47kh8rtl97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heuvelton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35m61l6c5ey9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Decatur\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35nnbcj3rxepc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tiller CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35rbfxgwz4z34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Bravo Rocklin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35re8xh4mlqy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kansas City International\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35sn0vvb0yq14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Camden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35t0tqchzyfr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35t5eme8hgg49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castaic\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35vc52ymz1el2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chouteau\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35vllq7vb1dc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albemarle Prime Power Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35w8kbhr6xe9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hillsborough County Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35x9rw5brkf07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pelton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/35z08nlh1w4b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clinton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/362sxwzws7h05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/362yh059wvmb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carroll County Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3634rjyhb31lb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westar Cities Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3649tbd5gq24g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acadia Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3680yhnm95yr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hancock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/369zt2rt168t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36dnmhfhzdr34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36ejefhkr6gyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36eplcdv333p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Crosse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36kde19vnj5df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern Front Limited\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36krkdc9lxhd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36mlrvzk17y42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36p83vfb497v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hwy 14 Holdco Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36qb5gt7mhy23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36qjym18qqzm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Phoenix\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36rvp643vzzy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weybridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36rxj4lhbz7f7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puna Geothermal Venture I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36szgsxmrf9y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36v1gvyyf1gpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Baytown Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36ve6j3cqpnl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Des Moines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/36xwny1c9s9gc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3724r462gerh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Grange\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37537q07wjlk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rapids Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/375mtfmvh9h54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WasecaSun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3764hz80r5g17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osawatomie Power Plant North Sub\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/377598gdytyh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BP Chemicals Green Lake Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3777prme4kdy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R Gallagher\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/377yjkh6cn5e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3788bhkvrbpwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornell University Central Heat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/378spbymnwdq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hewlett Packard Enterprise\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37beqm6j4zyzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gary Court 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37bj31nj2gtj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hendricks Regional Health\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37chcr44dbqf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aurora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37dh71x0mzng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deerfield 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37ds3jpkrxkn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vermillion Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37g5p9r9267p7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Beaumont Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37hwxy2qy9dw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37jtyrkfe7nv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essex Junction 19\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37kdxgg185l14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orange PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37l26rhghjxrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37qqp0p1vw5hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37rdvgyflgs1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Randolph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37rjdyw1xxc31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Creek Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37szvcyhks3r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37w70mxqdclh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefieor Medical Center Moses Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37wq80mh43kv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sutter Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37x8v3975j2y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lonesome Creek Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37y0gg0ctbjn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hines Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/37ybzrzf7527\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darrington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3819ck7fscs71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orion Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/381rfj9q5qwj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo Lundquist\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/385p7p93bfkec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Temple Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38cxks2jb89m1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Columbia Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38cykhllf9xd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McMinnville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38e4b926dy9jd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cove Peaking Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38ebste7jpdd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Decatur\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38fmq90r37nc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berry Placerita Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38j0625hwg1q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boyds Mill Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38l3ehbt0cys3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingfisher\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38lr0ehc3cqtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notch Cliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38mwzjfefjmg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DodgeSun CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38r5mf26c4emh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ray D Nixon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38rsn4gerrqy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suburban Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38rw1rnrfrdj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schofield Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38vm7vrdbyfq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Phoenix\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38wm6yxbqwt93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38x3w5tqnm988\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comanche (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38x45ffy8lvef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indiana University of Pennsylvania\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38xcp1g4pmh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Devon Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38y0xylvqlwy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montpelier Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38ygpq980qjcb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/38zfjnq8rw0s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alta Wind Energy Center IV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39158fmec73f4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dorena Hydro-Electric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/392sdc97qqlt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/394dgdbs9nnvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Beth Israel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/395hclt3h3373\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Washington Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3973k9w618en5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cataract (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3978xc3cfzhw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chester Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3984jxbn8g5m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilmot\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3992j18zd1z5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cove Peaking Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39dqd6t0wqf29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Bay Fuel Cell Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39e5l2gepwry1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lay Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39gnwdzfpqxd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaston Memorial Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39jp34l35c709\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinckneyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39k3w7p1bvl71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tipton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39lfc7850ljmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redbrook Community Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39mw1p28wqpx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39p7sbksx99n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berry NMW Cogens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39pkp56gfzkvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tok\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39q32zgfmj568\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shafter Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39qbv5egr6cg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stenner Creek Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39r4eltbed5ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wellesley College Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39r6xfc0tkje8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Falls (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39t84tyt6h2k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39vez0dcz34rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anadarko\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39vjw2xw2cdhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aries Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39wt0b9868xhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sampson County Disposal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39y8kwmypkf78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/39ztgyc8z31fd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b1tnv19bmc03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algonquin SKIC20 Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b24v3202d383\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maple Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b29te9xd47sd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thornapple\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b50jvfgz1djg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osprey Energy Center Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b578b2t8wfx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Overall Road Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b5dry5my37h2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairbanks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b8f3hvk6bfch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middlebury Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3b8qnfe5zfzdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paragould Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bblzwf5ty5g7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William F Wyman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bjgf94tpybe3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paulsboro Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bkb7v02zbqed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EXC Wind 11\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bmqqhnpyvwqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bnbegsdskyy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley Queen Cheese\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bqzbm3nc0sd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calhoun Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bt06klqg3d54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bteprsp9jrf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iredell County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bv1v4sv7w6wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orrville Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bw2f6n30gdjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tiverton Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bwmljhzhbykg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Troy Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bxll3xfzhqwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Texas City Plant Union Carbide\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3bz4jmmw3zy9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3c12vy0vm5c75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nevada Cogen Associates 2 Black Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3c4gj5bcl4y6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William Beaumont Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3c4tt4hphk37b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ice Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3c9y9xjhhsrd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walter Bouldin Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cd95vqj2v6w7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPG Monroeville Chemicals Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ck5kk2spfw7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite Mountain Solar West, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ckj7nh9fq6d2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3clxn74zjwyx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grays Harbor Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cmjmz980k7z6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J H Campbell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cmzpdxpjwsz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fleish\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cn1zwmm2rdz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Houma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cn2wtthx4f24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Strom Thurmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cp8pjbmcqww7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PS ST-8 Engine No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cpzv4h3bs8qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Durham Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3crdj4h0h3h2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cscbh0gtmew9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salisbury City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cvkge3d4ljn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Ave Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cw9p1tf5phr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Macho Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cwe0lbq5rhmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NC 102 Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cyekd8rngn9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Post Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3cygww3r74cy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malaga Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3d31tc3hrve65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3d8tjt6tknevg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3d93yecmrmffc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweeny Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dbrtthzyrbg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dg59qm173hgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington County Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dkt12g4f2tg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dow Jones South Brunswick Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dlznljtz4q32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vineland Mays Landing Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dn88twsh68c1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE McKenzie 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dnneltvt9ked\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CED Avenal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dp1n6nwjrvn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spaulding 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dpqqgpmemt11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Nogales Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dqbn9h7j66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterling PV 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dvrhq59kpm5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"James R Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dwvg6ese0zff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Breckinridge Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dx1qryn8d0xb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #11\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3dyq49w8hv5sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hurricane City Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3e0pe89mkxyn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3e0s0w3fz3bl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunot Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3e28m57lxx555\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9205 A Y McDonald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3e54hp2bv6nv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Livermore Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3e69pysj8x9l2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Marys Hospital Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3e8ts68fq5hh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brookfield Power Glen Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3eb9mypvsl64c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HMP&L Station Two Henderson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ebdw9gh7pfc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pixelle Specialty Solutions LLC - Spring Grove Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ebehkc6jgnm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Round Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ebt5hvybsj9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angus Anson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ejkp0zmgm3eh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rose Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3em215qn01q47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Judge F Carr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3em8k1r5f0e52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imperial Savannah LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3emndxl8dd3b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ep990z83759d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newark Bay Cogeneration Partnership LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ermfj2vgtj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Austin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3etcdw3krcnc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rancho Cucamonga Dist #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3evk20pj6k9d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherwood H Smith Jr Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3evyg3d4v99x4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hines Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ew0hpbey5ynd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rariton OMP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ew41tkl410zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #11\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ewchs0plsxc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MTHS Co-Gen Buildings\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3exr0crexd9kb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pleasant Hill Wind Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ez2d87115c54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneseo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ezfvskp586y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3f1054n1jb8f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beluga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3f1p575wlhnlg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Toad 1425 A Powatan Road, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3f54vgltnexv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MMSD Jones Island Wastewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3f7033279vc59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CNE at Cambridge MD\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3f84c7btx0ejg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodman Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3f94p4k448f99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spruance Genco LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fbrj271w5q16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fgm2dbldhwmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blount Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fh6x61nc9ml9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherry Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fhsmgxz101e4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PE Berkeley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fj1l8lbm4c02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UI RCP Bridgeport Seaside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fk3khv2cv4vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor J Daniel Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3frh32t5c9r7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Normanskill Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fs6mpvsl2tcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fwnb75q9901g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flint Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3fyhsgx2zg1f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salton Sea Power Gen Co - Unit 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g0kbjz6yhnrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g23z63wxwch8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g29grghwkh87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skylark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g2lq5kcl7spf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g3q0epzc7mv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g41h80sxpy03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Neal Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g7m940cgzy8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clay Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g7tqfe7lgry1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #18\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g8lnrf1kqvdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Temple SEGF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g9hmbczyv0nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3g9ythzhmzvh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beldens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gbtm6qebhr2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puente Hills Energy Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gc6zmy8wlpr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Abiquiu Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gdr1tpgd7wvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ouachita\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gfm2852zxtzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belle Haven Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gh3vn6kwdmvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry L. Oswald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gq2n91w0thgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gq8rqwzx3cl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View IL\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gs7rhph5nfh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Florida's Natural Growers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3gt9mz932tvnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles P Keller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3h01jp28fnsk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fayette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3h1j72xh3cl3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weston Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3h446qgqe04gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Railroad Farm 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3h7sbsyb66pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blackburn Landfill Co-Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hced639q7733\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Lupton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hfg3y732e189\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hlzdgm80nqyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"APP Prune A-D\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hmc6nj5gfz62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algonquin Windsor Locks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hmqz7yj92jrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albert Einstein College of Medicine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hn4xe2h9fyv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elliana Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ht61xm4x4847\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RGS-Rutland VNM SREC II Project (MA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hvl54hqp2rqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palaau Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hwdx3lk1gb0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hwvylyzy1kqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FAA NorCal TRACON\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hwzcndhlz5ef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baptist Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hx59mgrh2vzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hxmgqxdxtrk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3hyk1sg3edjh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nove Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j0n8decbgcmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waihonu North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j0nfbp0zbrg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j1dwxkxjw3l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middle Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j28818fdm6bb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elwood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j2hb33cs6s07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norway (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j502kj1z86d7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Collinwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j5gs2melxtm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CES Placerita Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3j9mh4ylz6pjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S A Carlson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jbgflck837w3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alamosa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jc429wg89vx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jf11el2479eb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Marys\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jgewr757l784\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Farm 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jhwrl8lpnxtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McKinley Paper Co. - Washington Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jjymwjkcez6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jkr835fegdf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport McMoRan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jn5b3fjrtv5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jrfjx0xrfp22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jtl36591rk78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McWilliams\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jtpnkr72ezj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jwdc19s8dq66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3jwh72crdt3p1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allendale Biomass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k03v4e1g5s39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rousselot Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k0rvfx4gjnq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Kearny Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k0sc7fjzlxqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Owatonna Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k10rfxcrxhd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Bruceville 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k2fwmzd9r96g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notch Cliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k31kpsgdngfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fishing Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k3ewkh0b4eb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Purple Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k4c4s4rlswk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinconning White Feather\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k4jbzgkh3e0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foster Wheeler Mt Carmel Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k57hzrj0jhq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell Downtown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k5vcwx0be2w2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k5zepkdwppl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Hill II Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k7d03675x3m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Shoals Hydro (GA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3k80lpdew9gd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kbe8sebg2y35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pratt 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kbh7m9m5cem6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norway (IN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kbyz50fv9p49\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOY4IAwAAAP//AQAA///8kfF4UQAAAA==\"}"                                                                                                                                                                                                                                                                                                                     
#>  [6] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Nine Mile\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kc87957bfpl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kds7zgl4wz26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunrise Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kesf7wsezwkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon Boulevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3keys7qvkgvm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"D B Wilson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kgqzjh94lq0g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kgw0bhy7j6x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kkdfqseg3eh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kks93yvg8z46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Provo Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kl4q78vxfh1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montezuma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kmbm3n3mrkb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haviland Plastic Products\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3knwtt8y3k2d7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walpole Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kpx5wr859gf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumpter Energy Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ksd0ve26v1j9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenansville Solar 2, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ksq91bp9kmwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timberline Trail Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kw9f7zqh0p48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ky93d1c6vst9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3kzv66f9zedr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGraw Hill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l05g20vzf47g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rodeo Solar C2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l0rvhqst96b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foote\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l3cnk1tfwel8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunner Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l3t90hz9798\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jonesboro City Water & Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l44jw3p96pr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arvada\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l5w13hrkfbqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3l84exrryvt96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decatur Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ldnz0k68q4z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3le5rlnp2mrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lgb0qjlzsn19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seiling Wind II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lh2djr5cp9q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakefield Junction\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lhe06h6180g7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Correctional Institute\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lhn21ef6p1mb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Century Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ljh9n041t388\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPS Power Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ll4ql2973lr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bacliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3llw0lksgp31d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Electron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lmjjmpyx6yr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lmyqgbt0ecr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tallulah Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ln5dgcrbtcn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lp1cygnsv33f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nantucket\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lq8l26r19p09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harrison County Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lqfnnhk2xjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Langford Wind Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lrj6z4txbn08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairmont Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lsbkqcj8cjn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CITGO Refinery Powerhouse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lt0p83ds7zc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shuman Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ltye6xjwgcr1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dam 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lw6dnf3ndc25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lwrcytjq2k09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Detroit Lakes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lxk0bqgrl7dc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE Alamosa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lysnnp9b980c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beetle Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lzte66q33sb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rincon Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3lzw1mnqllzq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Ridge Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m0ysn2fgt012\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heart Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m3b28vv67hj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dolgeville Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m5y5tkdsznzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ETS Ewing Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m7292dwt6lv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tripple State Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m7b0jh66x1b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oyster Creek Unit VIII\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m7h5bffsfn0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m8ck74blkskh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3m8eztvpr39l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nine Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mb1b25f0j16b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redding Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mbe5e3hvbyb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summer North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mesnp3xj96xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waddell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mexyhws7c62g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skagway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mgh3hjkmh7f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sarpy County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mj7hs8et28f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marina Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mm5y4x1h09bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mn1vytectwnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Modern Innovative Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mpy4k7qtv4vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ms6rqt7lbft7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Michigan University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3msmq4ghvyq0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Lake CT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mtmx25vj6xfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trinidad (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mvtlf1qkg50h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mw2ng06yn712\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bradley Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mxw1qlw31hrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King Cove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3mzjh78w59ehc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OR Solar 3, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3n0sjrnkrkc68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Q Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3n1l3wjytb1k3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geismar Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3n34jwn94tzp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3n4x0530mw5v\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanchester Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3n9zkmpd0pm2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Tulsa Renewable Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3neclg2hl4xeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anderson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nfdgrpgmlwvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brownsville Peaking Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nfr4fs5b1lnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nl2zy5m06vj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hidden Hollow Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3npqy7cbcmjq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nrkyj3mvld9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blanchard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nwc7rl99m43f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Michigan University Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nxxstldbrt9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otsego Mill Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3nyr2ecc4c12b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p1d3zpyrs4db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Segundo Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p22f5pgl1ffg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p2mrtw10v4kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warrick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p66mkwq4lnjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p6mbtcqpr2v4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"O'Brien Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p7wyvbvt4w25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYC-HH - CONEY ISLAND HOSPITAL\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3p83tthe87hqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Wilson Sundt Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pcsvte0lsvpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Spurlock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pe3b5gjst9tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grafton PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pf4wbm0qhcjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Renaissance Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pffm8vb7cxmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Rockford I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pft66lb477kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rutgers Biomedical and Health Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pfvc35bs6n78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stony Creek Wind Farm NY\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pgk1d9nk6rc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tajiguas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pjc41h60nk5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syncarpha Hancock I CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3plbrycc9vrr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 54\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3psn0pj1yssz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chowchilla II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ptrk10wf05b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beloit Memorial Hospital Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pw84lfqbmcyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Hall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3pym0tykq1069\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3q0h1qzwxh31f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3q1en6t8c05sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chocowinity Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3q2lwrb4z3lbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optim Energy Altura Cogen LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3q2p1pc17ntq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3q90hn1rpktkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Baker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qbb3xk7e7e47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Vientos Windpower III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qcltlk5pv0k3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ladysmith Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qddx6l4elzdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osprey Point RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qecgmvlm415f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Langdon Wind II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qhnhlkfjv5f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pilesgrove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qp0g7vj0tmcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maimonides Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qpelf9ptdtf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T H Wharton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qq8p9tzj1kf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Terry Bundy Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qrcmwghz00b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qs57pt1wwg1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenansville Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qsnnfgzyhxff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Toledo Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qt7x3cethgpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orange Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qwm20m1k0k54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qx39dnh3c5vc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medical Area Total Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qxgh8fwdxrrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartford Hospital Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3qz19m0yyvfjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3r21kkrv3qpr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Dillard 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3r4530m7gmmeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RockGen Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3r5rlhywtlj73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delaware City Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3r6bnslr2jqkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kasidaya Creek Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3r6pkbc0v93mb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NY - Presbyt. Hospital - 525 E 68TH St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rbwfw2m61fj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grayling Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rgmc7gv19m11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wayne IC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rlf15h5zj3ng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Santa Cruz Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rmz7jg6mfx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rncq9m5wx458\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Bend Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rpbdt40vflj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montgomery County Correctional Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rrtps34g49c7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antares Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rwhpdh4rktdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cumberland (NJ)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rwnv9lntfe33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scanlon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3rxdkfst8dspc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3s61tbdnqtj48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitemarsh Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3s7jxtc069d6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Westward Unit 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3s90wbcx73971\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3s9103xglkc77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingman Municipal Power and Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sj9r5xqyxv9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingman Municipal Power and Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sp66py4q0e2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Klamath Expansion Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3spd7tzexkzj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Dam Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sr42b54tylv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ground Water Pumping Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3st4tg8e4bbrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Crossing Energy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3stgf7f4cmd6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bearford Solar II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sw23zkr8hjn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Quinnesec 61\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sy1g9jrm7lfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clifty Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sykq8242fk09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pixelle Specialty Solutions LLC - Chillicothe Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sypgf7qhcwvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colby City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3sz75d7gfkh95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Wind Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3szsjb2dfsvj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Woronoco Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t21xmx31ny45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG New Jersey Solar RLS Logistics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t3c1329jsr8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t3fvtkq82pkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Landfill Gas LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t3mk3memfv46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pillar Mountain Wind Project Microgrid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t3x5v6kzp3mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyrene\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t91bjve2t3jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paynesville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3t95l8wv8b9bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Fork Wind Project, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3tbrs2395ww65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Fork\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3tcj09pd5gf8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9206 Donaldson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3tjbzd7kjb4s3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3tkkwv17jdm1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E W Brown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ts5yr1nkr9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oregon University System Rabbit Field\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3tvblnln7twj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rush Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3twvtqzfeyfy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Lexington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3tzhz2m3300r6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Solar Farm 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v0yf5jz0zqn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medford WWTP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v1cslf6657p7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v2yjtc4b2sk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v4ne401q42m1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Augusta Electric Plant No 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v5n10ps3e90h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v748q4c97vz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Linden Wind Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3v7z52r1kt7m3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vb00qy51j1rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trimble County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vbj9hzvcy783\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vdw1m82pc525\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watkins Manufacturing Co.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ve4z09yvzpy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fowler Ridge IV Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vf6rnc71rzwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wadesboro Farm 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vglm7z67zklc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barker Lower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vjtj3y8h4b31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashby Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vm5rcn8qdpt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vv8m4rvqqmlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vzj5lzd5nbx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Vasco Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3vzljdwpftwvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Shady Point LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w130cv8s5ww1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Hills/Blackwell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w16f1e6ws7y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"K W Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w1p6tv7f4vt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Arden LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w5x3dms5ke8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Citrus Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w81cwblwsbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UCLA So Campus Cogen Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w8g5ktj2075\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mine Falls Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w8lvj4ebysn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crescent Dunes Solar Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3w9q875eyhs7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows (AR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wbx79lyjpk6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Creek Solar Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3we68e39vh0gh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JBER Landfill Gas Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3we6xyye8qwh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Danville 15\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3weqzhpxw0kbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Green Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3whseygfbjh66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Rolling Meadows LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wjfgv3s6t1e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanai Solar-Electric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wk96y27bqrs1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garrison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wl40cq1mgd58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wn1ljd53nj5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnson Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wq5npvcqs2vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheeler Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wrqssehzb4q\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emery Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wsmemqej5fm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryan (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wss294npqgg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Abiquiu Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wwnvpef5224b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoisington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3wwp6y7n24k8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Point LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x032yzrlqzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisconsin Rapids Pulp Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x0gv06sxgeyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shane's Wind Machine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x0wqtyb556h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Piqua Staunton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x19zwsm675vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yuba City Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x2pb3xps35r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deutsche Bank- Piscataway Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x39q92ts0h9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"US Magnesium\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x39qtexclq7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NY - Presbyt. Hospital - 525 E 68TH St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x48szy0wbfhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x5h7x6mr90sc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solano Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x7ymzxyk5r\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oberlin (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3x919gnd8sl1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Joppa Steam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xb8x988dgw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xd5n7mz58srb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hydaburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xeslxwpk80lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harbor Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xlqv9zpxlf2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xpb9c1kc2r58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xqe9q8fp3kl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Providence Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xqgr2kffewf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aberdeen CT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xqryyky8njm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danskammer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xrf80h7tqq2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Painesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xs6jqmypl7xh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reusens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xspxce5yrkyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy Fort Martin Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xsvdlftzb6v9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spencer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xtcds1n96tkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Bank of New York\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xv3x1v879hk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caltech Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xvs51tlq5pm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockwood Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xvvnp8z1jxb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xwsh55f6ns29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xwxt78yt9hz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hammer CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xwzkqqhpelrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3xx4gth6n8t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Buxton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y19xj3s416pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barton Windpower LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y3qgsk5xtv46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heartland Community College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y5vefqg5hbz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Monumental\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y6njg2zcc62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hollyfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y6y3939bvx88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisconsin Rapids Pulp Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y7547b2jvm69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Five Points Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y80s81xx1gs4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y8f8lhf7p2e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunkirk Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y8k8h2btyv06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Pass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y8mtk2vj6dnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3y9jcv3hcyxn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EC&R Papalote Creek II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yfjw44tpwge3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yftylw8f2r91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ygdbn83sbgxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yahoo! - HQ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yhwgwsel8n47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yj262px9q5s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Badger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ylg1rthj694f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Truth or Consequences PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ylmxqpq2kzm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mammoth Plains\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yne2d21p85rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #02\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ynx9py8s1bc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ypdwrhtm0fx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock-West Point Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ypnlx3pf8vh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ravenswood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yrccnxsqyzm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yssjctjg0pb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pulliam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yx3es0p56dj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meldahl Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yy2fqn39yk66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweetwater Wind 4 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yylwl16dzh99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BioTown Ag\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3yyqpnqbs6qb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z0ptttjvwb74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"COC Surry LFG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z0rttwc61xgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bavarian LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z2dpp39057tb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forestport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z2qgm4tcmtgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountainview Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z6sf2zn189s6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z7s5874vfhs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Mountains Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3z8nzwbm9gtgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of California San Diego Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zbrjbn5ypfh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zdf4tr3nt16h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grays Harbor Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zdtejv9201t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Water Filter Plant #2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3ze5c1lv0k184\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zfn90szx8v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baltimore City B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zg7fzkgtqs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ellis Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zh3h5q02fw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Graphic Packaging International Augusta Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zh7whkqv3822\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montpelier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zjn9w13l8ly\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covington Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zmtfn14yrjm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riley Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zplvx5q6c1w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zr1sb7m5qdm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albany\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zw35n80yjyzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ceredo Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/3zycttjgtv5fg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thornwood High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/401y068vr6c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magnolia Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4044cxv1s7g92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jones Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/405gz3nnehtw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Wind Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/406e4mt0l82zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toys R Us- DE, Inc. at Mt. Olive, NJ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/409433r2218l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Woronoco Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40bs7yznqy213\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40d395y2ssc6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Encogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40dkf78vqzy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ampersand Chowchilla Biomass LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40g1ev7gxfcr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vischer Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40m68m52nl4t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40nhjmbmkvq1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Possum Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40nwexpss8zdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Charles Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40tn7w9wglj65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk River City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/40v89tqrndqs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King Cove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/410zh4ndl3cl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rariton OMP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/411j6whbtffk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/412mysx5yx6l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redbud Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/412ves2n382nc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/415j0lnqf8415\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AZ State University - Tempe Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/416e86tlx7fbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Prague\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/418lqvwjmn8sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dogwood Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/419d7pjvy9v05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41demg74cxb69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elmore Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41dls7075pm28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41e866fzv6s59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cana Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41epl68wf44xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seaside Heights Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41gd3q6bbdqc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41hgjdq930xkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Bridgeport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41lhqmgrd7ef2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brookside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41n25l019370d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olive\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41pd7s7bwse41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Troy Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41rh75ttywsvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ormesa I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41wjqhn8z0srd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White River Lock and Dam 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41yfvy67yxd3b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41yz1v7qfr847\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thief River Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/41zee1xrbf2v\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Ferris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/420nmg83dq812\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flambeau Lower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/421wkjv4x5h14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/424wylvvw59c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kimball\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4255w4zttnffh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethpage Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/427c7wmtdcm4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westside Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/429dnq4l12mr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southbridge Landfill Gas-to-Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42b77zt5fs3m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldwin Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42by83p8zr8y\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dartmouth Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42c6txks6gl4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kendall County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42dk7zle4mleh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellefontaine Gas Producers LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42g4jqz4pzkg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42gpgzpsyr3v\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42gxzd5h0ss4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42jh815wdpkj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42kmk064tyh83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Methane Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42knh29jpkp26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42mpmnyyfx045\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia University - Minisink\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42nm0gl842kp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Escondido Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42qg615zwkwgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Argus Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42rlglepeczr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sugar Run Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42s0qhwvvfyr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42tsf8nnvcd15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B.R. Sauk Rapids CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42vvq5fddsgw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin Heating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42x7kbtl95zxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42xsz0c2vekb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/42yj76dd1z0nc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goldendale Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/431pwhtxe7jl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cotten Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/433qfcw2e0gr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4359q0h458f01\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakeland Electric Co. (FL)-Airport 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/435g9lcm8w5k\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/435l77eqw59h7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puueo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4360bdszc7291\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parlin Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/436hqy1frw8s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powell Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/439evleej9jk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Criterion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43bcnxm96qze6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EXC Wind 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43bp6pg6kerz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffin Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43cdsz22dv3q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LRI LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43jx5t63tqlmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Bertron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43kn14yg1egp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flos Inn Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43nehdz17znjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Arden LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43pm2e9czh7sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gold Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43ppwv2jcejy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thurlow Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43s1xhclscptg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Plains Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43tmpws2lfxzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broshco Fabricated Products\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43xn616l30tr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43yfkvj7ntp89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steamboat III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43yjwhk132wef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mooreland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/43zrcq84s66y5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coon Rapids II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4410vrfjvet1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wissota\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4425vg6y3jtp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelbina Power #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/443p92jc64gnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/447f4peypvbg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higginsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/447hccqlw8j49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gold Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/448w55rc2c4s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E C Gaston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44bxehqp0pqv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Head of U Canal Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44dccnnxk93f6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #09\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44egfdjng2y56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44evew70mp8k5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Slocum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44ff24nce02e\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44gfv8kkn4hs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blooming Prairie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44m1xqtq3rtd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atwell Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44n3kdryn1bmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geismar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44pjcx4zh00x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44pktpfyb67db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bird Machine Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44vy9kskv43wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Branch High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44wbkvpt5xkf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Myrtle Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/44yvk8mzpe9r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orange Grove Peaking Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/453l12e4jszw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dixon Hydroelectric Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4544gzk0tks61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45463cjrdexwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4549s2n88p2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Montour\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/455368lx9qzj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DC Water CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/455c9q1wednkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greens Bayou\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/457ggxwk67rrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danbury Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/458s2bk777p5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Superior Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/459gxlnhy49z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timothy Lake Powerhouse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/459k899qmytlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osborn Wind Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45b0rqmmhqj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Vientos Wind 1A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45cn86q8gjggd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mitchell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45h1vn7lfvjv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onancock Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45h5hsxcysvg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seaside Heights Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45hsp71xqjl9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rensselaer Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45kzvh2w92rq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45nec735t1zed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glendale Energy Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45p11mbg8xs91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #22\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45spctx94rfrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Appleton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/45v15rvt6nqcb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Reach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46080qh3st5pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/465l8y03mk11d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Poe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46662kldz5xr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederickson Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/467db4c54hvy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lancaster County Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/467klem2x09h1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Acres Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46c5ln168fsx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brookfield Power Glen Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46c695edyrq82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UI RCP New Haven Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46ccnd43z43zc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46djjfqxvfv0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R Gallagher\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46eqpd71v6js8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Janesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46f679klkxvnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yonah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46fcp41p2w386\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anacacho Wind Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46h5eztyw4nz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fourth Branch Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46h81g3tf4c52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Brewster\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46lhwfhd731w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ONeill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46n6c0d5xhshc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tracy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46nngtkypyh97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kleen Energy Systems Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46np84d24gws9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boise Cascade International Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46nyfexssrmt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castor Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46qcwn80mf2zg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Origin Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46sj4zhmwe5b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46weg985s3h26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/46xs3gg3q0j35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HEBT Irvine 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/471gnc8s0r322\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodline Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/473k0q09z9y66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marco Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/473sbnyh00lk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nine Mile\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/476c19seg3vv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"45 Mile Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47blzzrbe0qvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HEBT Irvine 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47d3tcqcc87c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47dn2kvjqlb58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haw River Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47dx265b8gpp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dulles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47e9pbfx7207c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flambeau River Papers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47kz5xcnt96wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aulander Holloman Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47l1wf26fr8qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47l4z00plvfk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ples I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47llqef7x4g32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redbud Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47msvm47hn72f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47nbybf6zcldf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sandy Peaker Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47r1xlw0ydbhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Pass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47rcexpzpqvyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenup Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47rzvwkppqgp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Croix Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47sqvr12syvq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Par Sterile Products\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47tcrnw9yfy5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder City Lakewood Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47v4mvmr254v5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spruce Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47v9nebfhg292\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47vpb4ry9v6cf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cowans Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/47wjxl7yvel81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camanche\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/482hd0y8mkmx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/483wr10xhqd8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/484ydhd6d3bg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C W Tippy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/485cq2rt1pnrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm Road Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/486yk0wqbptxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harris Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/486zrh3nnmcp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48bpmf9g748m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Mobile Bay Onshore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48bydbn76gnp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dallman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48ebxejgkcxbb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fennimore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48m63sn84dkq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cabinet Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48mb7g4qb9ngh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biron Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48n4rzjkly4hc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockland Bakery Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48qd5xvm4xq7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CML&P Generating Facility No. 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48qwk7pdz7nk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anderson Regional Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48r7g7h6kndg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hayden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48s6fd7eqjr12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goshen Phase II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48sl87pf3z276\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Middlebury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48vgwykypnkyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48z7c006980m3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boundary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/48zflf20ckcvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Luna Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/493b0b9s013sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGinness Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/494b4zp7wn3s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/496x1hbxl3fbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Androscoggin Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/498n2pqgdj4sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bastrop Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/498nvjg2v8v72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raccoon Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49bpsh0hs4t4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aurora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49crxmydhrx96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Saint Mary's\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49f56n63e2n13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Jersey Media Group Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49f80fq0fnm93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49hrtgf0emwx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hammond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49jsx66szq0b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trinity Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49kn3zbcdbx9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wortham Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49kpyzjcm71c4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49kx3jvkj76c9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rattlesnake Den\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49nx312srrqyf\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOXaIAwAAAP//AQAA//8fYxb8UQAAAA==\"}"                                                                                                                                                                                                                                                                                                     
#>  [7] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Wellesley College Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49peml6yxdsz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"David City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49ppbeqpfg813\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahoka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49qdshxn0f1wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEV NM Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49tpfq9g5w5q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49whcdsg8y646\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flora Site B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49x50qlbxwqnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richard B Russell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/49zd10egg4s91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockville Hydropower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4b2d643hsdv9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perennial Windfarm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4b41ztnele7hg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4b4y1mhcx6f65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4b84tyrcjvrgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk Hills Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4b8me8htw31f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4b9m7tytbzer9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cassia Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bee4wnd1q539\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St John\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4behn5c532s3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kawailoa Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bfs34fdmjc1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BioTown Ag\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bh6g8sv8t3b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Pringle I Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bhmdpbqr543h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Ridge Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bhtvhkb55285\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bkec6z2nj58c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4blflce73mlc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4blptn7erm53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Transalta Centralia Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bnm9mpf9x3rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bt8l9t4k61cd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rolling Thunder Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bvh3nr94466\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Audrain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bwy5yqy46dpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pheasant Run Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bx2d8fvjv139\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millville Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4bymhhl7w8ffd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vermillion Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c0tcsyc8s62d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamilton Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c22qdebm9448\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Myrtle Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c2mnqkchgctd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferson Street Substation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c2stzj5pc1f7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roseburg LFG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c3d62d7cry4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Energy Nations Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c48grnycsef3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c5ph9v9zwks6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bailly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c5v00dhfemc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rogers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c6v7ymekhht6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM San Diego-Miramar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4c9292rnfmteb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sycamore Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cb2rw1d6ssm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cdqtrfnyxsbb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iron Springs Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cdywdhfxr6g3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flatiron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ce2yjv71yje3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cholla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cfc460wr8c05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palaau Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cfjwbf6qgj5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tacoma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cgjyr9v5w9q5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller Industrial Parks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cl6c0s8ngbt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"O'Brien Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cl9pwcy0y564\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G W Ivey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cmg901nmdzh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillingham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4cq6hdj6q2e19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Southeastern Connecticut Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4d10c5p4je67d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4d3tjgsplmrcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"4710 Hosting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4d5tjemr2pskb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Integrys MA Solar, LLC - Ashburnham Site\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4d74bj7c87dc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butter Creek Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4dfmqescgxxm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4dh50166cn0d6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C-Drop Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4dpdwj8mwmml6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoover Dam (AZ)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4dsfj7l0jj98f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin Heating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4dt1n4sgwvmk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Simons Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4dvr8vjqy64c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mohave Electric at Fort Mohave\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4e0cwqwyfnbw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hackberry Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4e1nclcee5wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4e4src4lkdp67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dover\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4e6m9bqz0vr7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GMP Solar - Panton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ebghcekf5pc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEMASS Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ecblwgzbtt74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ectpl6mltlg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E J West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4edeycjj7sxn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yucca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4edmktw0b8fv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Center Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4efw1n554c0t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beloit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4el097tdtwg93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleveland Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4emgdlgbzyde6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4envxr1b1vvmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kinston Davis Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4epwj6yxx0348\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albert Einstein College of Medicine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4eqv70g7pjeth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spalding\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4es49bfj7d3lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky River (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4es4rebtgwpqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cowans Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4et7b38gwxqy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewiston Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ets9zwtyl8d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAF Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4evwxkek6b6sh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ew4rk07mf9yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Worthington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ey12vs08e4yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Humpback Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ezhk31cpfg76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Post Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f0q68jkjz166\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler Municipal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f23q2r8p1kf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry Truman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f2ch65lygvs3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f301v5p9jjh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f34hywg5dlp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highway 56 Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f3kwzxmr3502\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tracy Combined Cycle Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f42wvqs2sykb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Road Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f4bq9nnw215g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bronx Zoo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f7e95ypphcsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amoskeag\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f7m4thz710t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willmar Municipal SW Substation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f9149x7pglr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4f9g8njplm8s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fc4zdcmjzk0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Highlands\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fcx92cmqx91b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Anderson Solar Park 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fde3zfyfndf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry L. Oswald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fhzemgw6b7j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fk0dq3zs75bh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fk7nnc2dyq94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Creek Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fmc5pxpydnjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gila River Power Block 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fnwgm9bczb36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Abbott TP 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fs2g4jjy2sb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pueblo Airport Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fv6wr4wn7zj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grundy Center City Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4fzrs8mzb9f28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berry NMW Cogens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g00v43w8ktl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nassau Energy Corp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g2hx7rynfr7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellingham PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g2jx92kycf4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stahl Wind Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g4b9byq5gvs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McManus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g4bf8632l0td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chowchilla II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g577nn8lg7vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yuba City Cogen Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g6485fdds9l1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powerlane Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g8l24bq8s20b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HP Hood CT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4g9271eprgvv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Falls Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4gchms0qkjft6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Douglas County Forest Products\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4gd95qg5854gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enel Cove Fort\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ghgrnyhgvfj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aidlin Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4gtxbscy0kre\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aurora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4gwr1xvnnk621\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pelzer Lower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4gxqkp07c3405\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lochmere Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4gxqzjdjx5lw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4h4glc5bm8kn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MU Combined Heat and Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4h9n652nwwd2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hbn65ysx3f02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hc5ptnvzvk52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hdq7k1156m12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis Palmer Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hehq5jpz0533\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milford Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hfp2nw0ele25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dexter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hhdze14s9nh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Road Peak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hhp7rde1wshb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hat Creek 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hhzthbtzq6xb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stephens Ranch Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hjqvllplzdq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powerlane Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hl091dxd02hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Francisquito 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hm8bnse555wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Phoenix Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hmqqpg3l9gz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Highlands Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hnk8njgl10j3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder Canyon Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hp93tewyz577\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William F Wyman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hs0jhljqj37h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Queen Creek Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ht5v4fs2ppt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sugar Creek Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hvksyy2e8fz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JCO Oxides Olefins Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hy24e3jr41z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rayne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4hzxrwzqs4b1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"651 Chase Solar NG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j0zt15bqlyn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuscarora Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j178tptrjdrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneseo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j1dw2hdtrwnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Hollow II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j432s4z23kk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j4elyqx45z21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clearwater Paper IPP Lewiston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j4gte44s24d7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mecklenburg Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j4n6j60jc811\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oahe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j76z663mpvw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McCoy Solar Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j83nxyx7wkb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferson Street Substation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4j9jdn6xv9bdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilkins Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jetzz5evewk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colstrip Energy LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jevnp16gnb15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shaffer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jk0e4vccrend\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Square\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jlsec0mpq5hg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mustang\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jrp2cll4r027\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bruennings Breeze Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jv84q9esezp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essex Junction 19\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jvzrk4klbcf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Creek Energy Systems I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jxk3wwhwxmn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crisfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jxx4l7qb9m3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSUF Trigeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4jzm064grpqk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4k08l29vtz836\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L L Wilkins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4k0ekl829zcz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4k20qzr03jm45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blooming Prairie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4k36wy2d9wfg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Independence Steam Electric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4k8ye5ybs5c74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kbk5wd5g5d94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Rock Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kck1l0nbd5k7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blackstone Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kcxw8rq8xvzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stonewall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kewvv1qkbr52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Columbia Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kf625lb4dzc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferies\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kgbjy6tvvs28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"KRS I Anahola Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kh1qlh9ysmz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"George Johnson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kjyz4mzpec82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Williamsburg Solar LLC VNEM CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kl8dr8ymjxtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summer Solar C2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kt8vyhcry198\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kwjyp5p4h85g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Energy Resource Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4kyjnssygwne8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Equuleus Community Solar Gardens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4l06ectxww0wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clarence Cannon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4l3cglnj4sy9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canton North Carolina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4l6bktz75zpg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newhalen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4l6kekrdp4mz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunAnza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4l7e888f2pmvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Creek II Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4l8ydzb0c0b41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summer Solar A2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lcc1mnw6lzvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockwood Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lel9ltm229wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martin Creek LLC Allentown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lftmhbsjj8p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edward C Hyatt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lgdm0ybv25md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ross\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lh4sdwn4lnf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Uilk Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ljr2dqm6q252\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mystic Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lnwkllyg4y46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cane Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lte9kd8c259g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Craig (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4lxb263xghgxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weleetka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ly26h2w6gbw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterford Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4m2b5300cs6n2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4m4h85qt348pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Temple Solar Arrays\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4m70ltc2hllnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Livingston Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4m89p643jc879\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4m8s2j2m5dh51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Road (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4m9vc2kmxze3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GreenWhey Energy Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mb1jm68pjhnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffeyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mb46khpllhw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Hampton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mbfpy0t8glx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminole Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mcpscszyt732\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4meyzxgxkl6df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montpelier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mfk16q0p4s9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crotched Mountain Rehabilitation Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mgdv0yytzjp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carthage Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mhgr3ny7bs3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshalltown Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mhwt71pqxsb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weatherford Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mmmjwvnfv09g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #08\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mnrn41plevf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunnyvale City of WPCP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mnwp9r10fstc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caelum Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mp3px6kjdj35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chambers Cogeneration LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mpmrwg2wpwk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fisher Road Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mq0w0pw6zmc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silas Ray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mrpnd3jfdclg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cohocton Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4msyv553czqk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seward (AK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mvjmr1bgvwd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stryker Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mw1sp1cymlh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM San Diego-North City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mw5d8ffjbzxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mww3l9hlx02b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Ulm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mx1sg36epdhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SREC Bath LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4mxy9l5zzmh29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n0m0vd8vvf59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pumpjack Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n2kpr0vg5m3b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilman Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n2w7ghfy0tt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management King George LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n3n23tdwn29c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n3q3ftdg46r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamlet Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n4z1xx86dqqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"APG Combined Heat and Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n5edh297vhz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeastern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n5tejc6qxtz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeastern Illinois University Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n6zehfrp2z51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goose Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n7w9770trbsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4n9wh837qdzt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadridge Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nbhcxsbnxp61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Myrtle Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nh28rhvt9r4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Menominee Mill Marinette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nl5g31ydfkjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nq82wvfbee45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE EPE1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nq9cv4hde24c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rattlesnake Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nqkp91m51d65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lonesome Creek Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ntd1z7dkvdtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Hollow I LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nwhxylsk4w36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Animas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nxbt06gj5g83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metropolitan Sewerage District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nxydxp0bsknc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"THUMS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ny4cpvf966y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antlia Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4nyjrg5trqpx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Alamitos LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p2e6dygrqhqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richard B Russell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p2sr7e38x3s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algona\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p4bfj3bls9bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p5hj9zy2d7zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Akron Recycle Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p86j8w2y0db3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Davis Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p8ghfhk2wrt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broken Bow Wind II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4p8pf72z6dcl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tilton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pb0cwk1s85n\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Polk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pjnk9bf8efz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pkkkldchdd4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muddy Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pn84yw3qzk1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hines Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pscvehrdncw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Desert Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pyrgd8zqw4w1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Webster Holdco Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4pzc20zdvckj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syncarpha Prinsburg CSG (Ledeboer)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4q00xezp71j18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WasecaSun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4q5b9l9qpj278\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottonwood Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4q7gnqceyqlk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Graettinger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4q7tngsp08qhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cibola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qek176fz08x4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Yerkes Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qekqlfb6pqbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia City Hybrid Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qfzns89tft6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Traer East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qhdhk2e283yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairview Farms Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qkl60ee5bcj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hillsboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qlvh0ks94g4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C R Wing Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qq49gzpsqwpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tessman Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qqbs0xffqgf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star New Jersey NJ LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qqmkm0tsc5l2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 300, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qs1t1pgmhw99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mooreland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qvce8tpkbf06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NCAH Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qvrsf56dtdq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethlehem Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qw6r21yczqld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kearsarge Concord II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4qwzg3f6b29q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stroud Solar Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4r0hnystsyt78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4r257vl3xg9s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4r2k7bhvjez3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huron Solar Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4r94fl8elxv38\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4r9nr69n6p6yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adams Wind Generations LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rdet82ymjsy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yough Hydro Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4reev2kfjc8w3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bingham Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rfkzmcsk4lc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CMEEC - Navy NE Trident\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rg271j31le2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hawkeye Energy Greenport LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rgw6hdvrsbz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garvins Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rned7l62wpb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tugalo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rpnlhe3e4he\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ArcelorMittal Warren\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rqbpv3sk0h5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Cities Hydro LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rsc82hed7wtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Deere Dubuque Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rt8sgfjl7q37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Civic Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4rwflw2r6kkpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton Athletic Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ry5275jyp9w\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R S Nelson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ry9sx17drnnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chestnut Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ryyr15c8tnzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noorvik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4s5prqm46wjj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Abbott TP 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4s6qqv4k2yd02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waupun Correctional Central Heating Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4s7f92y2dmwkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stony Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4s99l8ev99tj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moretown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4s9t3h00yez8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nevada Cogen Associates 2 Black Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sb04hw8vevg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peru (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sb5sndmwgtj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherwood H Smith Jr Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sbpjym3zwfc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cranbury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4scedg7drwkh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sd9cp3t1s4hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sddhhd5yk1f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lundy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sdwnr6cwxxv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Jay Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4shb6h60t9pf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Rita Jail\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4shlzlqbtyb64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Division 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sjmm3nr14q2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 1656 McCarthy, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4slw7tsyz85k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4smzw15d8y26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freestone Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sp06crfbrq8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AltaGas Ripon Energy Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4spkkhzbqz442\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marietta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sspbpmxwh2r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cashton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sswzckxd5gng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Empire Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ssycwnsmw1p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Industrial Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4swqszmv992b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apex Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4sy4hn4043ts8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodsprings Waste Heat Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4t7jswwc2rwph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Possum Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4t7n33ycyfb45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4t8kv1c01stpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trenton Solar Farm (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4tb92w3lxerw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4tczwelt9jsb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chestnut Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4tdn9mxt4d84c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brady II Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4tekenpxrmb1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CCMUA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4tfbkx2cd7rf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Point Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4th4bs3qcf13h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selis Ksanka Qlispe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4tkqrnhwpvl72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Valley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4v41r0l3rsym7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4v5kwl4v3yhr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arizona Western College PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4v7l1n8dv6fx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Meadow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4v8c6hk94473c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oconto Falls Lower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vb01r9gt2m09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grove Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ve0dztjpn2qc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ve9ct5hc3ex\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4veskl9lcrrnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hay Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vfh6nvjce1s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W A Parish\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vlwp4q5jzwb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highgate Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vm837cknrve9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Inghams\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vmtwzklx96q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 4, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vp6yhzqdxes3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vq2zyms2l053\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hazelton B Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vqeke34969t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vrmp6csgj1qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Patua Acquisition Project, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4vysrlyezg65c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Riley Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w1yc5nhz5t5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w23vtn0s3vx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w338tdbvqmb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Frontier Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w49jznrqk82f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w5xwtqwy1x78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camilla Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w7941wfkmeg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hewlett Packard Enterprise\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4w7cn54b3znm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmer City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wb66htzc99e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grafton Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wbhp7zjmyxz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tulsa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wc1kj7wsejkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles P Keller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4we5rp9n48fgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Hills Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4whczw79c0twf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Combined Cycle Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4whxfnd6kt6nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun City Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wkrcxgnf9m57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kanoelehua\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wmlt9jtgkyc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wpn1vx9bexj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Durant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ws1639mg1d6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willmar Municipal East Substation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wszbj9qczq0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Four Corners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wv5628tkzn3b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lindstrom Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wvw917drkg4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miramar Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wy3rs7bl87f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4wylcpkxdpfzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burlington (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x1pxev5kx7pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashdown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x1w9l502ktb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fisk Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x2b04fzfynyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Creston Ridge II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x4jktyw5wzl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x5bfep15j9zd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yamhill Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x7xj5eh3pk62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x84zptwp7hc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Storm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x8gjv8exdl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steamboat Hills LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4x8sjr074bv3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xbdvvxegqxj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xc166d6xqp97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Donald Von Raesfeld Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xcvnlr07jb8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Bagdad Solar I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xdem41j46f54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterford 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xdjt2twz5mhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manatee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xe3hcjmby0p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingman Municipal Power and Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xepg321xnhtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xf0nf8vez4md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pleasant Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xf1nk0ch5b7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xjeqn6ftr655\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Old Mill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xkeb01phfllh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xlqp40ybm7kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knoxville Industrial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xpvfxtf44tsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xqz5xmfe9158\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frontier Windpower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xst2141yjhm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Kaktovik Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xvk3dzbdvr4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tri-County Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4xz1ft7l4k775\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sub 3 Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y4kht1gmfse2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paloma Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y4n0l3e80my1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palaau Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y6p7v98n5ylb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leaning Juniper Wind Power II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y7zks2nyy4rg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaheka Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y8z6vy67je6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westborough Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y9r1r03b7s8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Avon Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4y9veykwfhkq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ycbgstqrtprb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selkirk Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4yen3j6y1j4s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson Reuters Campus Bldg A-D\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ygjbhfq9cfsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"2127 Harris Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ykcsfvt38zb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bennett Creek Windfarm LLC - Mountain Home\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4yl6bpcjcxk6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherman Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4ymmrzelsebb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yucca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4yp7cmt766fj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steel Sun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4yr2wx5pct1bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gay Robinson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4yvtb1e1y4793\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bartow Solar Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4z2q3kfd5e5nf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4z4vr24mkht68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayonne Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4z5g6w9d7lpl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Tule River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4z7h9q24s51l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yellowtail\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4z8ng43j160c1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denver Int Airport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zbdtrylet7yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zbgmrmyvwsd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Myers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zbtv3yhw5zt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE CPS3 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zcwgzmv3r8ef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dresden Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zeny93ckly57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alexandria\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zf512j7nfcn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ice Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zfgklsqzfrmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Community College Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zfjm8vjjd925\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westminster Renewables, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zjjxgpdsee1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ivy River Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zkgqsx200p86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #26\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zkv117k1dq1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meridian\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zmvytx01xvm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Halstad\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zn3651yz8qg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zpz06wbg8j6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weiss Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/4zvbm9mq3m1f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithland Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5014kmhb7jnd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/501vzjjsk6c02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Grove (TX)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/507jk13gytx97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sayreville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50b2cd0mw99pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suffolk Energy Partners LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50blpw60k2712\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50bts5d1wecpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50dq4llr32k5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ArcelorMittal Indiana Harbor West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50j2p7tk6n91f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Bridgewater Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50je8999b0n5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osceola (FL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50n9ydn8z8rd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50ng0prj3vqqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50nklv17bbwz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson Abenaki Hydros\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50ny2dg5yp02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HVCC Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50wsvn0zyskqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meriwether Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50wxbl6f9ktn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redbud Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50xng7p2tsdgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UCLA So Campus Cogen Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50y1ttb84rj3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CASD Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50y7svpcxgkg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyger Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50ylx91tx6wb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harris Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/50yv7wsz6vy31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Durbin Creek Windfarm (Burnt River)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/510ejtd6e0leh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kennett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/510xv03dhmk7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buffalo Ridge I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/511khfmvbphgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeastern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51270t7cc2wn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moberly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/512kp30d4tpx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Valley Patterson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/514rz85j21c03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyger Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51691dgppx1w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RV CSU Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/516g5b8d4c1g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhinelander Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/518zhkfqck0y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Kearny Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51bmplxj0n1td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southside Water Reclamation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51bq9240h09pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prospect 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51d8vq0z0dme9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canaday\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51f5qk53btrrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kings Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51fcdlbm8nwv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chaffee Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51hpzrrmcsy57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51lvemyr00kv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quinhagak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51nc9bw82n9l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Malad\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51ncfbvp7385h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caledonia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51nyr7s85k2e1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51pzlkb1qk9w1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51qwhbb3mcvfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gateway Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51td5vctrdb5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryan Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51vht909d339g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Agnes Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51vjjh3eycwn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Francisquito 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51vy3s0xs89y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51xcg4mmpx848\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/51y0mrgzqk89h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"VMEA 1 Credit Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/522ctljyp02p7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carter Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/523qfnm5rpze7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/523xe4scfktc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52513fhgsftsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wamego\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/526j7tz1bd371\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/527ws2lwgxnnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmers Branch Renewable Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/528kb1jqhc204\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ottumwa City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52cb9664wppe6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"VEC Alburgh Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52d21x21nbjld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hendricks Regional Health\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52elffsvqdv9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kyocera America Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52f5lbh7s4t99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MillerCoors Irwindale Brewery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52fd2pt1sdjq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Palo Alto\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52fr41r4tzw8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52fttde16tnm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mottville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52hrv0c9zv502\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith & Wesson at Springfield MA PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52kff967sw0e4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pecan Row Landfill To Electric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52l475jqz00kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mercy Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52m6wzz70zfeb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52nw0e1r8vt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 8602 Marion Sub\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52plgzxbx2c18\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOdZIAwAAAP//AQAA//9h+A7bUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [8] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Nash 97 Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52rlx7ydvd1z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ATT Van Nyus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52tdxj6cf7lf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashtabula\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52tl8k49rjj01\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boise Cascade Pulp & Paper Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52xed2bejbypf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaheawa Pastures Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52yc9tdwxw1xh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kleber\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52yq47r9q5h96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Karen Avenue Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/52zqdyjfbtd66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5318mgvneyjw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5321q235296tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5323mkm5djtd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #11\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/533cvyp7snbmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/533l6k5pqmhz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"A G Wishon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/534phb1jn34n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/536cqttvdqwwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Koyuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/536pgnb6px0wf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springs Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/537r5d9k5ygw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boardman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/538j38bc34594\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo Lundquist\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/539566bgy3xj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyandotte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53bjb7sxbcz44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midlothian Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53bt7cvl490kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whillock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53ct1138vqbt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53h80m8vyt9v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ironwood LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53jb6vd7x0qj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rensselaer City Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53jw7fmtlv678\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53kybm9vctd2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kennett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53mn1lxykcdd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Angeles Harbor College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53mzjwex6je4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53stl0g4v08hf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen S King\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53tzk0kv6p7jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walter C Beckjord\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53v52cjrewkc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cascade\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53x23kg9tg1t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53zdpggfbhjy1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53zp4r6856vjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock Panama City Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/53zzqgw3q50wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana Sugar Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/540nqrlg48lcb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/541kpg549fy5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Gorgonio Westwinds II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/542dnymp4wf68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imclone Solar Electric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/542xbp27pxyt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stony Creek Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54371dgbzljx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"491 E 48th Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54bxmdvne6gh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54cbkhlm00gsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moreau\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54fvx2nzdlxlg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chowchilla II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54jcxfyjktqy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54lldk44z1kbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54p0fx64v2kk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angus Anson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54s45n0ke1hm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seiling Wind I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54v5m4wbzx8s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unionville City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54v6nkftmsfg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crane Creek Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54vb1vsn9n3nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pavant Solar II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54vkbtgmp0nz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Crystal Sugar East Grand Forks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54vsgxn22gvc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYP-Hudson Valley Hospital Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54y5z4rt5zj0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Joya Del Sol\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54ytcj8hcb3c9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AL Sandersville LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54z9f6zh0fveg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magic Dam Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/54zqsg5x2t449\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ghent\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/552yd4kp553n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/556w1f7jrq7dd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Westchester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/559dhw48tcfsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55d1y2v1ed0mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55dfycdch0ve1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55g3h0j2x7p6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Larned\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55hmfgy8yrbwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55hp31qglfb0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Point LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55knjxbg8w1t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55l9j9ydfj951\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55lbb67xpmpk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55nnmvdvp2lrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55ny0mr83w4b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covington Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55pww8kccy4h3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55sqvqydwfbv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55tkzd636wey2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornerstone Power Vineland I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55vg612hd5cy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steele Flats Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/55xl3lg12r6hf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Commonwealth Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/561wwhtmn3ve\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles E Monty\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/562sjr50sp757\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erickson Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5642vwtqjekbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Bridgewater AB CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/564l7m3cle4e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oneida\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/565ekpnj6emh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leaburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/566g0zjm7qddf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OREG 2 Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5684pgbqbnwxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yazoo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/568qbvjfqc7wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Covert Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56b056tp72jt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willis Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56c62m1qnf6v4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perryman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56c7vj7k5sms7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenansville Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56cvjpk69p9pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56hngvr881hs4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reeves\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56jpqc3zhwvn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pawhuska\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56kp2pjykb6x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Pleasant WTP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56mrlbj3rwe18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Starrett City Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56nftds3bjtd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pella Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56p78lbvkwvsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boott Hydropower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56pjjh7y5wft6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moxie Freedom Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56qhtzmx26pxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe County Sites A & B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56s9n9m6wnj67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56t75tsy0dtl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foote Creek II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56wdlc4e6cv78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Larsen Memorial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56xn8qqbgqcp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Breezes LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/56yw7jde0ykg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hyland LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/573bz93khkg8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxford (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5744wcgb9ebmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5758hvqdehck8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/575wpxvn3p35g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/578f72m6nmbnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Juniper Canyon I Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57c69y70mpp1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medway Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57h7vcbkq6hb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Carbide Seadrift Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57jmyhq0jx6c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J K Spruce\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57lpxsrpk2dl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haypress\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57lypyp4p6bzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57m7fv4l92y58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perdue Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57m9g3w33enb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney A Murray Jr Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57n8cpmyprqlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Centinela Solar Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57nzzddqsgj44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Landfill Gas LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57pgf9l6gnns8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Savannah River Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57rw3ykp8p2t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57t9drh3b54c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otis Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/57y9qecz5c5j2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Battery Energy Storage System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/581d3sp1ts892\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/581n0c4tn8p66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brigham City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/581tb54h10sf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lindstrom Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/588mfzcqktd07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amana Society Service Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5891f3nqz5bs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederic Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58bct7xkc73r3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vulcan-BN Geothermal Power Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58cyky2d4stv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wallingford Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58e2ss8b40fbb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58ewf14j45743\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Pole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58ez7pgk95ks9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58gq898s29qbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clearwater Paper APP CB\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58hdebc31ywnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunn Paper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58mb9rxn326td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Lions Microgrid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58mkg437kl4s3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stanton Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58pv91tdretrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Ninth Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58rgy0tq5lbqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58sfx0jeqwnk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pratt & Whitney\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58tmsr2hjet2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58vvzqz3svzzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58wtdcxb2e9z\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Francisquito 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58xd39fknyxg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cork Oak Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58yt0kwdr3hgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58z6tl7cv33s8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverwood International Macon Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/58zctkqyfpv88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tazewell Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/590c86bxg7hyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Effley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/590jfwl2h6dw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FIU Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/590mdg21nf5y\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson Abenaki Hydros\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/590rjjn32f15h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Terminus Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/591sped7tlrv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moraine Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/593sl56n9klcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 2 Orange County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/596bp8559msh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/598q75c95z24c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kings Mountain Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59dce21n203z1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waukegan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59ffk1zfkp1z6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59fyn5lkzz553\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryan Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59gpngd2ydk82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharon Spring\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59gv33rthtq09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pueblo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59h4e05w6s2z\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cape Canaveral\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59hyek1r9bdqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59j9xk3dy6xg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alder\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59kpthtpwgkcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59mzwd9r78xrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #03\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59n4tm70cvqn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Mac Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59pwpld6d7bjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Chute\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59sxff73jdez2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roanoke Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59syfz6b098rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geysers Unit 5-20\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59v1vk4txlgc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAF Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59vsnh5pgqsq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sepulveda Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59vtyzgp4sn61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bird City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59x40kqp7ylp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emmitsburg Solar Arrays\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59x7804dzr25c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sandy Peaker Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/59xddye4pcqr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Crossing Energy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b03d77lfvlbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Island Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b1681nbkgf7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Naples LFGTE Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b1dg95tyd27g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b1ytxw3dqs5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FRV Cygnus Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b24s3yqtskl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Macomb\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b6dg8mrmsh04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York University Central Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b6hkwdb2cf5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Bridges LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b7rbj6yx0ny7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cumberland (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b80chrdzqz16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watson Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b8kb016xm917\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hill City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5b9qr642rsrg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geysers Unit 5-20\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bd6czgr5jpjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawnee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bdf32yw8y0e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bej85qb3cn02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Columbus Water Resource Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bfqt7vrht808\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Backus Microgrid Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5brvfcjhxrpd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biglow Canyon Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bsfnkqj0yjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenilworth Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bske3b6ksc45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wylie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bvss13x94bhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baker Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5bz3318hd9zy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c0j9e0dl217c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medicine Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c3tj05qx08c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cunningham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c43kb7dzmc69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newhalen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c4bw0pv8jsbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Creek 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c5zl4f017n0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turkey Track Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c6z7fhjytcz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Front Range Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c78plgkgx9e5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crete Energy Venture LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c7tz3lbln3p\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack McDonough\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5c7yy9jj3ylp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colfax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cbrheg3xkb48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mobile\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cdf58m95pgcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rosewood Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cdhhj9pbjm4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Owatonna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5celp1jy3dqbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hickman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ceml6sx75b87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleveland Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cgfh0ttdk0k\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAF Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cjexlhq9jqwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Neisler Street Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ckg3hh7rfgvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cl9gbllevde5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wayne Solar III LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5clgy5cbs4rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhinelander Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cm5pkh02pkyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pickwick Landing Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cp1vc2q0wtm7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SUNY Old Westbury College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cqnxces1gezd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cs2z75pewwyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ruthton Ridge LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5cv06sxxwrkyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Airport Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5d03nk1zbm845\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Possum Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5d16zv8hctqbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5d2hc29qs91f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5d3rlxt7k1txd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IKEA New Haven Rooftop PV &  Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5d7x1k7k2y46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Road (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5deqy1134c5p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hells Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dgprzny6v3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dale Hollow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dh7bd4jq0fzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sartell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5djlx0d90wgd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bovine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dl3rmxwczf62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genesis Alkali\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dlp945nfhxd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastside WWTP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dmgjkbmsbxd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timberline Trail Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dmzrh1blknw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Sevier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dp89x3slcqz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lachute Hydro Upper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dphg3ch39wsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Canyon Windpower VI LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dq8l1h0hxdq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dq8t049d75pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells IC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dr3nqgf0rmv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hyland LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dr5e9z1e3ww4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Branch (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5drvhlhzhjvs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewis & Clark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dxgcys6tchr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vergennes 9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dxkz7dcey487\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAF Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dyd74shmcqj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5dym02lb08jmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e10dz33gtfbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e5e07lz41ptf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sewell Creek Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e5hvwzhg5s05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Creek Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e6ke3lcddx18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairmont (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e6y5912nzbcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adrian Energy Associates LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e77k6j38lzz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OREG 2 Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5e8918dzdkq4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McNary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ef0z6tvk4tw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Group Data Center F\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5eh75tvvbs6q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5elvdzs361l9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5emkwfyrstey\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peak View Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5en3xs3lvkkmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5engh01xnklp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orlando Cogen LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ep2cqm9vmdgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5eqm8478rfg7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ev6y4vzzlb28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palmer's Creek Wind Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5exne98v31reg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Open View Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5eyjwq4cftsl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shannon Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5f131kcye8p7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goat Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5f6cr0w326xx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soda\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5f703n5geg0r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J K Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5f8wwc3bfft42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Richmond Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fclzq6ksfkeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ff2b0ppe1g93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grassland 1&2 Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fgfphx0mcb3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martinez Sulfuric Acid Regeneration Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fkb5kjd3vsq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Nicholas Cogen Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fkp5vt6yzm5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wildcat Ranch Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fml1wq08zwlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Daniel Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fqr67xy65elh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pella Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fs1cswt42vj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roseville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fsvh3vmnm4bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"D G Hunter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fv4y38glczn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Loudoun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5fxbnrzsdwyt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vale Air Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g0dkc9h18f62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Water Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g0yllhm0ey19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spruce Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g27x7qn8tgx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cove Point LNG Terminal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g2f1xe4mxrwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnston LFG Turbine Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g2k8zhmzp344\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nacimiento Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g3d327q3rkp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g5f6n585fry5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black River Hydro Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g6rq0echqj19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McSwain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g6wqv6y1g0l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g75m17f0gq9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy Bruce Mansfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5g7zjzm3yb8xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jarvis (Hinckley)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gbqdwrfxf6q\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gcgpv163ldb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harvest Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gcp9j65ge006\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GREC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gd758gkm09xb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ogdensburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ge3td4wzcx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Air Products Port Arthur\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5geyc9bpfklk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yorktown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gf210sqc4q74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Craig (AK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ggvewbxwygth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ReEnergy Stratton LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ghgqvfrcjhlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Nuiqsut Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gj4ne7v9ysc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beebe 1B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gnfm8b15c851\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allison Creek Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gnj4zqfgk581\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raft River Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gpe5vtwyfr92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springfield Solar 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gqljfffc7plh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Sherman Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5grgcmgdl23e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BentonSun LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5grhk40k286b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Troy Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gtdqgrwykhqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Austin Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gwe230g4bqjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gary Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gwrb9pynzwpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taft 26C Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gy2fwdkxk167\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Sky River Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gz4nq91t4jyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5gzzlegk0y6sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palo Verde\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h0kfxr9lh0v5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boundary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h1m649d3dt25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Bertron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h2ghzzrf28r\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baltimore City G\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h3dx6hxsyn3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spanish Fork\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h3tpjtryh3r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Capella Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h5n0ytzhdqcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Facebook 1 Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5h9jqdr7j2mtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robeson County LFG to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hbvlplvc1c1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Rayburn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hcjfrmwe9407\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hczlk48ecmjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olmsted Waste Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hede5yc0ghr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angier Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hgt4fxf1sfb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ranchland Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hj2nklbhr88d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9201 Norplex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hr660p2l3s6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Humpback Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hs2mck7k2l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheeler Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hskw9206yep6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Priest Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5htjbc0rckmy4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Ninth Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5htqb5bwj1sfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hwqymlmlzswd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5hyq7xs7cd774\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nick Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j0hm61gv8dx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Cygne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j0xpc44mg3yg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westmont 400B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j27g0b287lb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Channelview Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j4nn1z6gl5b3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dave Gates Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j59f566bpbm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ozark Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j7gtmqvqzsl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aragonne Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j7ytd4v4670f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpaugh 50\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j9385lywdqzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monticello Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5j96wybdygpe8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jb1hgrv1vd78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamlet Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jf98yks01f27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T H Wharton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jg5e7tcrff3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Correctional Institute\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jgqbqbp06vt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medway Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jj5jrfxnbgs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rapide Croche\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jjfjfkrlhc78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Penacook Upper Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jk4kppjeelwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meadow Lake Wind Farm III LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jkbd392e0716\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jkxce82qpmf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colfax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jl1emetl5wl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jmwc7vevqkq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor Mesa Linda C2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jp22gjvew7w7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coralville GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jqmh4dmr7wnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shishmaref\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jrjzdmgxh0sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #15\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jrqep18h0m3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotlik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jrsl35rlfp5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert D Willis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jt7vwg58kt07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jacksonville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jtwx40p3cwf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sundance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jv8c8wd1lz0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wallys Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jvc6vjn8q172\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jvtrlh2zypng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jwqny9h7yzmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jx0s5jcfqvv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potrero Hills Energy Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jxts4w4jtd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newark Bay Cogeneration Partnership LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jyz8zrvjevjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Agnes Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5jzq1sq42fc6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevenson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5k2ny865enfn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Dirt Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5k5ms0ye27ws1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashtabula\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5k5v2s3b2w7fg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oahe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5k67szzdvmtb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy Bay Shore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5k8jwz8bythkb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kbrlp5gsrx78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kc9jh9nglsh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pillager\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kdjw812xsk17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kf3hl6nw81e9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kh78nsx9c3rg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5khm1kly353s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Methodist Hospital, Gas Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kj3entq1fe68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kq652tpn1929\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lightning Dock Geothermal HI-01, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kqtebcbl0twf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geysers Unit 5-20\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kwcb3q51gfe8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Florence\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5kwxg08gk30q\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Falls (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5l3696wetv2wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"158th Fighter Wing Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5l7c2c7tchhhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5l7d6xrcl5595\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McNary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5l913y0hwdnrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Orleans Solar Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lbglq3n8cyhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berkeley County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lbv4vzldc34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Trust Plaza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lc0334d8m6gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essex Junction 19\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lfpzc0mtjf1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pomeroy Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lj6dwy1k5rn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cannon Falls Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ljh3y4cy0nl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Steamboat Hills LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lkzr116sjc29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Treasure Coast Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lp30ny1ykbhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lq59jdjl3h31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mercer County Community College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lrvy524w6l74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peavy Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ls5ns8ktx931\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lv6g40rfcz8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5lxzb4xs6qsrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oliver Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5m0lygbppxe65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5m5n6n6krnm1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5m6kbysgeed99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G G Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5m6ycdpx7dcmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Somerset Windpower LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5m71rn6zn8vlf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mickleton Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mc7z5n24j5sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mcmtpjqvcy74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hillsdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mcq8nnjf8zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5md994g3qbtcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palomar Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mdmj3x3h4hz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edwardsport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5me3vrdq0nxnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deercroft I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mebw24wm9bk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indian Hill Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mg7t8n0txnm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Commonwealth Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mgd2qz1j9kvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ml2zslmdv9b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lucky Peak Power Plant Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mmyezeywqqx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mnkqn8zkjs51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mntdplqgx7z\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mqrjbjfmb946\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unisea G 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mvn71zbcz5s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northfield Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mxzc7sd0hc3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spring Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mxzwveem3e85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boundary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5mzm06b3hk79f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stebbins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n05xkde9ykx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n0h6nv03egw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n1gzdwzs7mwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n2j805mbhdc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bolthouse S&P and Rowen Farms Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n3zt94xlw8gh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MCLB Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n46l5jfm5wc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"US GSA Heating and Transmission\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n47s5rx78ys4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fremont Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n4zs3py0r0h7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hull Wind II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n8he1753xdy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis Palmer Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n912b2sxnwwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silas Ray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n9lb1g17mky2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ivy River Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5n9m6k9nvfzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galena 3 Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nb6h55g6zbsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"V H Braunig\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nez1lg2rkwy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nhdjy1epp9k7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Westmoreland Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nhxjec0feh11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Atlantic Services Solar Farm I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nj8nyxrdqkp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nitro Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nmsd52xe4844\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Winds LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nn64r74ff5q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coyote Springs II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nn7qf2w85pv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enterprise Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nnj48zf54b66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Phillips 66 Rodeo Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nrlgeljxbgq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisconsin Rapids Paper Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ns2d7r5x7es8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Kammerer 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nsbnhptex6zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nt4k0ldstfdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nvxg0ppq50r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nelson Gardens Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nyc010qln03g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Concord\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nyn3zrtbsg27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sayreville Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5nzk2fdfhv5s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coyote Springs II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p3eg5wcc8ryd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Utility Venture Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p3qf1qy987g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p456twmt4rt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaiser Ontario\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p69z33sjt3z6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manatee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p6mr30f1ye81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p7d6zrgyr889\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p7ye8nhlvy69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nucla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p8dnd2qz8rpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marmas Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5p8s2574n49n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pbg7px2erw0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pcw8b7vy1np8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adams Community Solar Garden LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pfs8yrgqskj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"P L Bartow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5phye34x6500f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyman Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pjgjfmh67661\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewiston Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pjn83z5hjbm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tallassee Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pn3q8pbs0nm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GMP Solar - Richmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ppx4ft7xwl9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otay Mesa Generating Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5prcecx6mw3x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lay Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5prvfcccbld27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #10\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pvd999fp901d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gateway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pvwffv2zss18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whelan Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pwb6snnswrm7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noxon Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5px2d19rnvvm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danskammer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5pzpe922j3jz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Argus Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5q16wqys8sz8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Phoenix\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5q41j0lnl0xhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LeSun CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5q8mn9sxv1etf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Mountain Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5q9efee678zw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Dawson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qc7ht1058h2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York Presbyterian Hospital-168th St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qcf9gk41m46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastman Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qd8gflpx847b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silvi Gibraltar Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qdypemc9g266\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qh79g350dx8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AZ State University - Tempe Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qjxhkn2wk5l2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aries Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qle540pyew4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angoon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qmedte6rty69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qs242hqr6ev1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ZCO\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qsgnlqqh4494\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qsns0kdr7bs1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Huntington Beach LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qtklr7g4m2kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qtnzbmfr9j17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Croix Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qvlbwb8l33d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9201 Norplex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5qvrdtdmf71b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5r1fh3msf082d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5r3vcrgryql9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES LAWAI SOLAR\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5r70jfbkbted4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Preston (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5r9w9nmz7y5rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dundas Solar Holdings LLC CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rbfyyg8h81m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SoINCPower6, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5re3fnn64c1f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of Halfmoon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rebxdmx3jlm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakdale Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rgfb55glmjeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Platte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rghkh8m3v4lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rgm9btjgz797\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoServ Community Solar Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rl48858jrwe6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Post Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rl76tenxj8cd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ice Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rm8sn922kde4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jonesboro City Water & Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rnf2q7b74ybh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coolidge Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rr6jwt1fd0e1\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYORbIAwAAAP//AQAA//90c9ZwUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
#>  [9] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rr7jyjd8ml38\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rrd9132h1mf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colebrook Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rrnb3e3zybq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tracy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rtftssnm9n2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Post Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rv1rjhnrdkn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Ridge Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rwp28fhdenh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahului\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rzdx9w6r2bw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Philadelphia Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rzh755f7cgc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rzkn8b6wx56d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Temple SEGF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5rzw19htj3nx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation Cemex River Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s13gh5kggrgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlantic\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s20l1093sk9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Utility Venture Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s24ccfd6pe0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chaves Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s3tdbdytd65d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ephratah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s3w5d7b5nqh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marin Clean Energy Solar One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s4y3thy26666\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Capricorn Ridge Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s5s6d880367\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffeyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s6fnlvbxvjkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muscatine Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s6jktk4r658f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Howard F Curren Advncd Wastewater Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s7t2dwfj7z6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apple Blossom Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5s9kexvyj7744\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sb4r6mwerjhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Charles Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sbwt0zww3nrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"United Stationers Supply Solar Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sd210664hv53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altamont\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sdqxw3cbkrnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrence Hydroelectric Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sedm7sxtdq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sg298wtyvnxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Terminal Development Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sg5ljx8btg99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baytown Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sl5ybqjzk6m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CITGO Refinery Powerhouse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5slredpz1880b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sm99wrqxvb13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IND Community Solar Farm 1st Phase\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5smf7r0t9z7c9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Chicopee Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5snqdde3sdcd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cascade Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sp9q0wnh3t6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Century\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5spf4yvlxb9mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 250, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sqme758111b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osawatomie City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5svntncq68bwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dane County Landfill #2 Rodefeld\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5swbzg6hph4qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pit 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5swf3rkefk874\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wellesley College Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5sx6x43tqbcpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burlington GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5szqpq70dc8y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eddystone Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5szz9rrk6b9r5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westbrook Energy Center Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5t10mfsf7tfb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Valley Generation Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5t1dfcrc911bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Worthington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5t41sx39ez396\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selmer Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5t4676y8607zb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hinds Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5t6hj0qn9ex94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Buxton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5tc7jehe2y2p3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DANC LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5td999xwhnbv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5thy9dssgcms3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 8501 Aegon LI\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5tk9vwy2vn7d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crisp Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5tm74cg4tvfe3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parr Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5tnj5250ndxe1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yakutat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5tqzjjp5jxnk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5v0eel4s8bw7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5v306yye0l859\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5v48grb9j6fx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Segundo Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5v7r2bckr9l42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vdskbvbxxwdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Madison County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vg5gjgbftwxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nelson Gardens Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vhvkrk25vxqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vl0r5qm3h6g5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Murphy Farm Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vlnk1tn1x818\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vmqr7evd5yd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diablo Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vmv22yq3srb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vn6f7z9pd8x5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muddy Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vpp657trfslf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Mesa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vqcf0q157erb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Low Moor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vrslcfcqtr91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Valley Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5vz6ey607z7vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lemon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5w3v8jcdwwcf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fighting Creek LFGTE Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5w4xr1wsfcrdb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Marinette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5w5jg9kh290sc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Marinette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5w5jv623q0byd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5w8l619efedmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wynoochee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5w8rzc6sg68wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lebanon Pines 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wc8cfh2prcec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington County Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wdk5h0blmggf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wdlc7tnn0hpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wf2g2tym0mj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wge90gf2ql98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoffer Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wgh0ymm8vs1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mojave Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wjx8240r33n\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Municipal Electric North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wm3f94mnktsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Libra Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wpj33bnbctsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anthony\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wpjqs91nml18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beatrice\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wqjmwg61tdw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croda Atlas Point CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wrqqf2bgcqcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cimarron Windpower II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wsmkl4nlfm18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osceola Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wtxh36d1vs5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cinnamon Bay Edgeboro Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wwnjjw3n4wd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wxg1xctn1wr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wyxsd19r9w41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5wzn9n7tycyb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5x3948h6clreg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Century Drive Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5x3gylhmxl663\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comanche Peak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5x8vh22s57v0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milton Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5x90l2lt6dql5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Falls Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xc2p5q8hwpf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xcjzflbv8y6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City West Diesel Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xemyzz07x154\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granby Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xfbtnp37sxp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xj107n9g4eth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xl350xk3bss3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Oak Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xmjr259m8xcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Chicago Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xmr2w91sws14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winterset\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xsyq7x2t0r47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snider Industries\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xw42vlfbdwj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmersville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xymq7dzkwd4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGoogan Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5xzknfyyzxng7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leavenworth Greenworks LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5y2glw7tvkt2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleveland Cnty Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5y2k3q37zl715\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunner Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5y2re6rgssy9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clay Boswell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5y4q7jzpy3swc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kamin LLC Wrens Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5y7dm2d9y4xb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5y878dbngq48f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS Arbor Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yc3vfbdw94jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakefield Junction\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ycsm1vrxwfx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yd8l7gxlpdec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Rockford I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yed372qjwjl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sewell Creek Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yjeb1r8zg9e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Cypress Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yjehfzqf75t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salton Sea Power LLC - Unit 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ykg4bnqh06t4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palmer Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yl479ed1vvk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Des Plaines Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ylz7fg2lpb84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East 12th Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yn7mxxg67c7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Falls (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yndj16gmpg5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ratcliffe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ynqktve6ere2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orchard Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yrbkdwk1l71d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5ysn8jypg37n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm Support Center East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yt8z4gykbgw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Energy Center Dover\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5yz5066815nq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z001sew3lj49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamilton Solar Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z1cgvrbw47k7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Colorado\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z447cn5rhksf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gastonia Prime Power Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z491dcbdhcvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabetha Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z4hstq50drhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wading River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z5w47nysyztf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Three Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z6fedejfz436\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Ferris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5z9jpkwj3g1n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zbecjjbyj3bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Urquhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zfx1q7dpmj7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stryker Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zfykf76bn32d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blewett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zh0e9gcl7f27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pepperidge Farm Bloomfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zhhk93dls54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whispering Willow Wind Farm - East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zkqczrl350m9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Birchwood Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zkwf48evvbr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Jefferson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zmnkg5xt97lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"4Oaks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zp2gygy0knjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Yolo Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zr7q0lppqyh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potrero Hills Energy Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zrxcwy9xvsf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sleeping Bear LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zstecxbe8606\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Water Nexus Mt. Holly, LLC Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zt1q7dxt1ex2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Nuiqsut Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zv1eybxceq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie State Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zy14s148k6v5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/5zzqckl79sx4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yakutat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/600gbgtw13kw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Winds Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/600r1yr3emq5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victory Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/602gdvvk6nm23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #26\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/602n9hjee6xfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Larned\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/602vb8fshsyt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgetown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6034lxwk50zt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biglow Canyon Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/603qkhnvyrf3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kansas City International\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6050d1z3mj8b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Gates Solar Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60dkv2b1dcwtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60ecx52e8zcpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dan River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60g8h9451vhz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thermalito\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60j7m1hf7s2d6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Durham AWTF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60j7vy8eweslc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arizona Western College PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60jeg0ef67g47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEGS IV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60m1kk3hb225b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Valmy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60xgvserr3tk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Presque Isle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60y9lw0dnmf03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potato Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/60zfyvdywwne1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Avalon Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/612ghzl54yq53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethlehem Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/613dd5be48ghh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lavio Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/613kd1kjv7d88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tracy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/613l49kmqkj79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/614em1fcd66y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arapahoe Combustion Turbine Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/614lwt8413p11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Livermore Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/615k9pxys7v3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bacliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/615wpjcp16n58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CentraState Medical Center PV Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/615ywf0p6rc37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Avon Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/618qxzm5dhpz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rosemary Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61dbppzcw3x27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oregon State University Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61dqhzxee3nd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wissota\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61f653lkzf8pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy West Lorain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61flnq8ccwz51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Region Community Hybrid, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61gfp9h1b4v1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Benton County Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61kg1etr2fce\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Axiall Plaquemine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61lzkfxltmgsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quinebaug Lower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61nxjmq5hjqnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wye Mills VNEM CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61qz2ehzx62fb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcanum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61rbxvh77y457\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altamont\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61rms8wbrxlgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61rxyvnbp6033\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/61wbfk2fgjz9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Friant Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/620f3l4ygy4l8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeSoto Next Generation Solar Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/625707pr937rf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Lancaster 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6257epybgqgmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tasley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/626wnef6p2kd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Don Pedro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62960gjzzc1bh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smallwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62b8gcw7xb9y9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox Island Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62dk832nte8k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camden Plant Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62dp3rtt5zz21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62fq91ny3dlg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ice Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62fsv5zf3b2t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comerford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62h4f3k6hydhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angel Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62p1edsmqdfe9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higgins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62p8h61epqrq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JED Solid Waste Mgmt Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62p98wln1zj44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Surry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62q7mpl031dp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deming Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62r2jnd8c0sv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lon Wright\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62s4mf7q3qx99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C D McIntosh Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62s6yvr24wz82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merced Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62t26srt1xc8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62tmj2rrwx2tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taft 26C Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62vjhqqgsb624\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corpus Christi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62vvpcfm2ntq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62xnqcczk2kpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jocassee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62xt58k3zj15f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayway Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62yd8mzlxnkrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62z8kexv4xkw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62zgftqp8d70c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pelican\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/62zssj2p5j8m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arthur Kill Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/633ejt69zqr59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salmon Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/633hxcymtyp7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NCAH Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/633teelr1bjl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Settlers Hill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63484cpedh6f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6369e25ez9wz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert O Schulz Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/637hr0dxqbrld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burnside Alumina Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/637y2bv74rg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waupun Correctional Central Heating Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63bh6r6xsrq36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Latigo Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63jf07sml0vtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MinnDakota Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63l0g69rhn9f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Canyon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63l33jmhr5qf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Valley (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63n71f3f4d1e4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UC Merced Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63nz4tw4lqk52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Cloud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63p0bqbts8qb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Wing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63pcgyrcdvsqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dodge Holdco Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63s2b42346dz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Next Generation Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63ssm2pnztv1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broken Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63wswxe6jgfx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Westward Unit 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63wt7jztfn8eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corpus Christi Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63xb94rj0w2cg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indiantown Cogeneration LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63y17zsqk7zt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LCEC Generation LLVC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/63y608dv95l72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6429snvrq61r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/643swscgeswq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cove Point LNG Terminal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/644g8cr07gncg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/644gts2jz1wy4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IP Springfield Oregon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/645c1yg4eew8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Model City Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6487902ms98ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waynesville Solar Farm (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64b0bdvl1vjt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forked River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64btz7hcedgvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64cmn1pw3p103\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adams Nielson Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64cx8x7r4lgj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berry Cogen Tanne Hills 18\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64d0bcs5vm3s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bacliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64dpe1efsgb06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cosgrove Intake and Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64dy21q0gb3td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64fcztyjqklb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Rips\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64gm74rc5vc44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Possum Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64gnshjvek832\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selmer II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64gxcett0pzk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dignity - Siena Campus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64jgtnpcfvgvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stanberry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64jpm3sjkwze\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64kc2s6wq7bmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Peak Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64lck1gvh74j9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64q31lre0l0y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bloomfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64q7y9wjecb3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunshine Gas Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64s2n25nd1f86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martin Creek LLC Allentown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64s6fft0r6jb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Church Road Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64zxdwd3n5bt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Francisville Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/64zznjcg9tpec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashtabula\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6505pt8e0nb36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Hummel Station LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/650llq6vk5xt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffeyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65310qmll7px2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Escalante Solar III, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/654m2w9vv8b4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Siphon Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65542gj9pmfj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middlesex Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/656541nltqnl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fiber Recovery, Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/656get7ys6b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS Arbor Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/659c188wme0zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delta Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/659cg6wmc4t6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fenner Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/659k9m29vdem3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar Paper Company Rothschild\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65epv7z1gnp2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65pechv6m1e92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SPS5 Hopi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65q8d6c3g2sm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Taunton Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65r356kh4pcm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blewett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65r39rfcgrpch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bacliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65sy7j8kjj6m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anita\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65y1nz1qx7pxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Security\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/65z46gk1766zc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashokan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/660kcvblzs43c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edgewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/660v5h3lj0l78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney A Murray Jr Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/661xd92j8tdw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blewett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/665k2bzj8kdf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 250, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/666e6z9exxq7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Marys Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/666q8lvhhf564\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shenandoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66b32bjpzm4f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66bx45bvr50h6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rengstorf Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66c3204h7vh6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ozark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66e6xpkwx974g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danskammer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66fbxs622vcl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oberlin (KS)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66g1s8wfpvgzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exchequer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66hh3w2w5zjp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Feather River Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66l3mhk8wqc6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kasigluk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66lwyzsry5k2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevenson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66mh1l0wj2271\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albeni Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66mzetbgvn6x3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indianola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66nq4w0y6zzyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66nwf3g2llhn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R S Nelson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66sdv2lz6cy71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66v06c1p23jmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quincy Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66w1dc8f9prpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milton Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66wpxy662yrhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethel Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66xs99x2f87gg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cargill B6 Biofactory\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66y5r8w70epm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MPC Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66ycl0hsezk68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elevation Solar C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66yd06snvbde3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Wayne Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66yer786cpn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intermountain Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66z3yrsvfzdx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Northern University Solar Site\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/66zxdm0p8qpnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potato Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6703eb135rc1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny No 6 Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/670kh4w2vznx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/671kdg2f11j34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Du Sac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/672rd2jg2b6r4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R W Miller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/675vre9sf1qx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waymart Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/676t92e2w15f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thunder Spirit Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6795el0cl5c08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exelon Framingham LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6798k4t5hhze2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McCook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67b8edzdmk33b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67efdwbg7xn2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Appleton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67jpdpsbdb7qd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67lbmw4dybq28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Radford Army Ammunition Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67mlldjz3wb79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminole Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67qyew4v7zlxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nacoochee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67t0yjlcwhxj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67vnymfybxndb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67vs3qzqpz9b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belle River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67xn9k2fcb7r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AL Sandersville LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67yq3c5zzh2m4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eddystone Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67zbjjz87w6v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FedEx Woodbridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/67zcdykggcv47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6832kwe4038e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highland Wind Project (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6877kmvtz28y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Remmel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/688274ds3j0ed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Carbide Seadrift Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6887q2fvye63g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brent Run Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/689lb2tz627kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dudley Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68c7cxnlpcejd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68cff8cff3l75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nearman Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68dvyfk5qwlnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oyster Creek Unit VIII\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68fprk7g9c05c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68m2psyc5c91h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antares-GRE 314 East Lyme LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68plcj3r5d3dg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakdale Renewable Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68qfgfqx28xv1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oahe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68sx2kkzh3np3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Five Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68tykl7d9m25g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaston Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68zk9hnq0m841\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Groton CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68znzch9rvbx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dalton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/68zq1v5w1rdkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon Del Oro High School Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/690ll957vbbzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roscoe Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/694rrdl1j4wf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DOE Golden NREL Main Campus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6958d3sw9r709\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"French Paper Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69b2wm69cv3l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dexter Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69bj03p164l3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SPS3 Lea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69bs577rt51nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69dqjtdkvpgh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middlebury College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69dsxns9qz8b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metcalf Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69e5zxktl7xsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 2 Orange County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69e6jpmwwrggd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toketee Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69j89pw7rg4jh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alcova\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69mrgmzz63qz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69nx1773v5h5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Concord Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69rq2jp4vegld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69s11n6k1s8w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurel Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69sdxx318nwtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Park Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69sxjds8bzlnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gerald Andrus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69vpz64h4p3hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caledonia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69wc4cpl32447\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dresden Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69x5vw3zmth6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenland Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/69xym9lm49c43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Cairo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b0dcr4dkt57c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wissota\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b13rd5758dj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b15ghkql2766\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #26\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b19c1n67tx5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenyon Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b4mcv3m82bgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kathleen Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b5jt9qlprqsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6b6qxf8m6tby\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Byron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bbkz7kmqbdg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nesvold Watertown Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bezzhkjwf1bh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T B Simon Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bg3reylzkb0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silverhawk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bg5fkfsw039d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bhch98bl8545\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bl5wsqyrrfc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"London\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6blp2yq1l56n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SR Camden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bnbhjc31xb88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essential Power Newington LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6brmd0bbzfcx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mustang\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bvyqkxlr0cf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rensselaer Solar Site 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bwzb7zvl8f95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mio\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bxsnckq2wz8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Valley Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6bybj4wqz5q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tioga Solar Morris County 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6c0el6ztxjxq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hillsborough County Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6c0z2knhlzd78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valdez\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6c1wn85e82y1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South District Wastewater Treatment Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6c3t1h1v67c6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Logan Martin Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6c61vrfm7fnk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scandia CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6c9pctd4ghrjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm Insur Support Center Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ccc4cl0yv9mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cekt3fspd4t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DD Fayetteville Solar NC LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cfc68qbvyyl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cg8sgrl7qs57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweetwater Wind 3 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cj2fe5g36vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hines Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6clmp8s93ehed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edwin I Hatch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cmcemnm4sxxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middletown Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cn6sbphghrz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cqzsecfs8qe2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weber State University - Davis Campus PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6crlep8qsj1nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Valley Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cv2j78qpfqg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McWilliams\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cv7bg3f0n3yg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cw8xx0qr9ft1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rail Trail\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cx3glf06tbv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bushnell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6cxlfq0t05ss1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6czm0tbzn4k2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6d34htd98gf08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carville Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6d5vrxc6g3fz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6d62jdmgwhsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Double C Generation Limited Partnership\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6d8thvp19rq92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fiddler's Canyon #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6d9n3564h2s77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marcus Hook Energy LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6db7qrlqj7rr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J K Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dbrkevls7zl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Spurlock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dbybqfvm0b11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paddys Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6derbtc6kjwkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mosaic Phosphates Uncle Sam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6djxepv5t6866\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dm8k1etjghv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Effingham County Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dpfgpxd7mm77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Catawba Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dqmzhk5ysp25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schofield Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dr2wlxc5qlch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coyote Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6dtjx899drlp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deerfield 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6e27jl54b87jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merrimack\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6e3ct9h1sswk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6e7nzr30hnj59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6e7ry9qnkd8g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Armenia Mountain Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6e8cctpfd1v85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NBC Field's Point Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6e8dbtpckwzqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tulloch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ec0644pk8l79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Napoleon Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ec137762pz5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NLMU Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ee7qqtedkdm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McPherson 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ejfxf7xebr7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Ninth Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ekbe2xyrpnyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6el0fhlhndrv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gold Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6em592ccgrmf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roxboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6epy90p2sj8m5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6eqjxqpse3492\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sonoma Central Landfill Phase II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6et29tn3ndlsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pretlow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6evx3m93xpf99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Siler 421 Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ex0n5977ypb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skidmore College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ex329qer8v08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6eypk7qlf0v94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kansas River Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6f03b5w4zzw15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McMinnville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6f0z6jx5jby91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ravenswood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6f75ktp54z0p2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6f93mjncb5rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethlehem Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6f9ycsgjf2m46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chehalis Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fczl345x1dv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fjq2tyvv8es1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley Unit 9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6flcgvy043cl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glennallen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fnxy85j33ls1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dave Johnston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fsymn0ptbjl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ftcy1qcjgkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ftkx2n22qxg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fulton LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fveyybp0rmec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arrache 4013\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fxcpm3y3mkb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keahole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fytlk3zg9b05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arkansas Nuclear One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fz64zv1gskl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana Sugar Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6fz7sthdmvmwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Painesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g0p9mwm1e1gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Stone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g0qx7xc2j376\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central District Wastewater Treat Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g1gk3vz8kfn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Evanston Township High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g1gk4y0krce2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"301 Chestnut Solar NG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g1qt79r9hbdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kay Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g1xm1dc0n9n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gastonia, Tulip Drive\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g1yvebr7wr08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g2s4z2nhxq35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sibley One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g31ye7y7yrjg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gardners Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g36358htkjn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g3ec319hb2n9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kendall County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g4wsmdkkyd4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EDF Lancaster\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g4x0t0kd1p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marquette Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g5fbxtlv5lhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MMSD Jones Island Wastewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6g5v2781l5z0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gbctv12cvdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gblv0y5mp415\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gdfv2yv6nh95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gdwwcn6kt8v4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gefg6ntwek37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foothill Feeder\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gej2pmcrbjf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hatfield Solar PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gey9lx1jby72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Samarcand Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ggbh1yf138l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McNary Dam Fish Attraction Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ghc8bcsg3jy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northern Westchester Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gjc587m6n89g\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOaYoAwAAAP//AQAA//8E/JPkUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [10] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Sikorsky Aircraft CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gnmt8bc8wfg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gqbk5ws20pec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Gardner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gsqks181n6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elwood Energy Storage Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gt880fbvzrk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EG178 Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gvgq6v8mery6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agnews Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6gzwetcpwfpw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antlia Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6h38k0fy5fcw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kettleman Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6h46l6sz105p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverview Energy Systems\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6h7nmcvpncxf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Gate Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hcpc2krbsck4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coronado\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hcs2cy96ne5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Johnson Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6he3c4679wwq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hg3p23x4gr18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hgxjztclplbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Langley Gulch Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hh60ed8lw5f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Cogeneration NJ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hh79je4d2zq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Ridge Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hl3613fnspec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hargis-Hebert Electric Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hmsv8ysv2mp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Vernon Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hqb0whhe2f9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefieor Medical Center Moses Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hr2sl21hdblf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GMP Solar - Williston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ht7ywtx44z95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oroville Cogeneration LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6htvxdqty2q9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hv81qx1e635g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upriver Dam Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hw5xnxlen23g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hwennv6f4fcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barre Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hwnl3hwlqsv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Roads\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6hxpcxw8h1yt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #05\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j010sr9chwtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Andromeda Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j1qxp4bqs3c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j39pbbd5vxp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomas A Smith Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j3qm4y3g75yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watts Bar Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j5fc9jwdt3y9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genesis Alkali\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j6ngl1jdc3q3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warren County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j92s5y2662wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baltimore City F\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6j9ghjjs47l65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jbq18pn2tpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Williams Fork Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jd09yp29qzz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EG178 Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jdfwslby8fr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domino Sugar Baltimore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jdtdg8cf2nq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas WPCF Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jfcrjbfh0j2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stony Brook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jfp73mq5lztc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flemming Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jgcfkwpwnk29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cresta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jjbkbflggp35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jl0s702hhxtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Anaktuvuk Pass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jm03yqxgslw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jmld7x0zj8l1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DodgeSun CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jpc55ejwpn1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paragould Reciprocating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jpfngf5gczp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jqe47ecetb7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jslrwtq84bdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LCEC Generation LLVC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jwpte15134v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willmar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jwy9b980ftvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henrico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jx82sdnrxtsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erving Paper Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jyk7x7edk9lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6jztb2bn8387g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Odessa-Ector Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6k2g2765d7kt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fayette Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6k7gh78c05w89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norris Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6k7htb100vftg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Floyd Road Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kb710dxq3ej1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottonwood Solar, LLC Cottonwood Carport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kbxp7xlrfcz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clipperton Holdings\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kdx301nzrxc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hay Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kjtp13r35shb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mangum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kk055mz392r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cargill Kettle Butte Biofactory\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kkg1pqdb4c1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Portal Ridge Solar C, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kknsc1cjb9g1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chocksett Rd Energy Storage Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kletddn5hvy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kpsfgd3p5mcb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hudson Avenue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6krf25m551y6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nacoochee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ks94rp6j0149\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spring Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6kwq2bm1ym4m5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hurricane City Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6l0j6t0d8v7m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhodhiss\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6l2tr6f0kq9n7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hatchet Creek Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6l5qv284b21v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E&B Resources\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6l8ew3fvfyd15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medicine Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ldt97pt70g26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pilot Hill Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lk7x7ssmk4w9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grafton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lky0qbg23s9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rutherford Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6llennxbf91jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Logan City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6llkfw8bbtn33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lqe25wk7z1ng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rosemount Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lsgccfl1gms6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakefield Junction\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lwf9tc2tz83c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"KRS I Anahola Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lwvhk9b75fs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sky Global Power One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lzqmtnzxx5td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hugoton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6lzynyf0j1ve\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6m0rsl39eppff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unionville City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6m18myyqpk6mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Julesburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6m3tdvbwtbn6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Park Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6m60lbzpwxtgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Baytown Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6m9f84h44v9wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blackburn Landfill Co-Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mcgpp9q16qr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hawkeye Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mcydw5t6prm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mdjbtdfhyy96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osborne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mesv4f61f6jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #26\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mfgsxlyz1l9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Creek Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mg46c2hp5r28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Tower Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mk9fygh90tl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dynamic - Walpole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mm69z6x1f96c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Crossing Energy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mpey6hyl6he7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ACB Energy Parntners LLC - MTF Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mqqe4ggd1r56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ft. Churchill PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mrl1s5e1feq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Turtle Wind Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ms45zwzcdsmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Model City Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mspdkzq2f1d3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powerlane Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mtl7pdtycpdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JED Solid Waste Mgmt Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mwwrc8rkd4qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mxrpyb5j0vh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thief River Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6myrf39n0rwvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay Front\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mzkkz9xwh1k8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6mzwm8f4n6tg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewis & Clark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n0qvdyblhry8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hilton Head\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n5ncpflztbg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unisea G 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n65pv8m9xqxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Methane Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n79glstyczwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drum 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n7jd2z5lh1eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Storm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n7jt5xcpb54b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Hawk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n7rpm06jvtt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cove Point LNG Terminal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6n96n5312ehw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ncb4k6n0b6p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunlap TP 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ncxkwzm0sl56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Earth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nd634hkw1h41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nde1eylpxwk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilmington Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nkksh18ynh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson Abenaki Hydros\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nm1wdh3qz4l3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sampson Road Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nmbmjggc866d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yerba Buena\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6np7c3yn7wt16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Box Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nqnr8hwek7t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spanish Fork Wind Park 2 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nvbsh28lkc0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Oak Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nxdzqdqr6ww\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calvert Cliffs Nuclear Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ny69c1949mj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurel Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nyr1df3w5764\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Beth Israel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nyt45vpd1rk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J K Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nzrzcrsnctdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covel Gardens Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6nzvgmwehknhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broken Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p04fhfxwpkcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olmsted Waste Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p0qvpywrnhrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinetree Power Tamworth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p21l5gj8qgrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bos Dairy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p2x628vs9fsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p384cgt5dmt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hooper Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p3qjkyglc6x5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Independence II Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p3rh6bd906v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Phoenix\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p4sz6e1xqjeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wichita Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p5nfcj7hjf44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California Valley Solar Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p7mvwl3z1be9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p8c18w95kw8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ottumwa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6p94tgl7g2lq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand View Solar Two\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pcxwf250mg6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UW Madison Charter Street Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pdz8w1zw6n29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pexbf6vp7kxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pf76txbq7tm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Piney\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pjnsscz1tryb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahoka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pk5w1vy2rwh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mocksville Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pn139r5rpzdf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manitou Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pnq049pp09wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverview Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6prv06p6dshkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9107 JBS USA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ps711wde5smc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sarasota County LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ptchkgedh4vc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell D Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6pwh5wlv6wfg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Ox Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q04pdv0gj9dc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lenox\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q11y3rd69q12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakley Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q2mqnlpezq9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherman Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q3c5s7k71g6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pasadena Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q3yz5nceejh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kendall County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q5dqhe94jfz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tesla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q7cdpkxvzfw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q8nh78m04syd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valmont Combustion Turbine Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6q9jtrzz11vj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henryville Solar RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qb4303g60ecb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Golden Spread Panhandle Wnd Rch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qe6ky4scptz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qefcncwejk2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Road (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qkb2kdy1vl8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Samarcand Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qm3wzb28tpv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salem Energy Systems LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qnk3emsdpe5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qp3h5yrkl2d2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shrewsbury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qr0rrlx90801\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qrm96wrg8tl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"French Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qvwn5vsf0kwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qwh1z22b06b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lookout Windpower LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qx4dj8j4m2w7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wind Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6qxx9tc564ye9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Deptford Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r0fz57bry4s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefiore Mount Vernon Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r0t7l1pv3b7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tule Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r4e4b9wf1l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jameson Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r6clpmtqlptf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springfield Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r79ctgql9wr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Energy Shelby County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r859gmchlt3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6r9v1kyj86yd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rcdb25vyt9bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk Basin Gasoline Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rd73kw6mt4kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6re35gqsgzeqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burlington (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rh05tpc9tqc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilder\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rh0dd1573fw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Field Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rl9k43yn9447\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rapids Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rnjbzc4clegb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rrpd3yqgqkec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bernice Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rvkjnrstbrv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UMM Wind Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rwecvjqzj9w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brownlee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rwg3gmhred9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dahlberg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6rwndglstgcn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tecumseh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s0snwz9g70eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Savannah River Site Biomass Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s0tbvrm97rr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E B Harris Electric Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s1rygh96ngrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puna Geothermal Venture I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s4egz2g2lv09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knoxville Battery Energy Storage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s4sgelwcty7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s4y28rtwhbq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Lisbon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s54rqgh233d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Christiana\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s5g7r9wmyb8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swamp Fox Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s6cwefmg0dz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Terror Lake Microgrid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6s9khvdtcz737\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PE Berkeley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sepq79scetn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Volta 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sgfsdvpqg5cc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Georgia Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sgqg3mjqq8xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pike County Wind Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6shdzrf7wlnzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6shp9n493f23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seville 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sk8f94tlqt9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6slj0hrymsnz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lederle Laboratories\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sm12t6sy7f5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sp5w882k31eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peno Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ssfjm7gv6kwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Siphon Drop Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6stf3kvhd88z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton Athletic Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6swddgx4exnb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McManus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6swrskwybm12h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport McMoRan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sx3n0fb21ne8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Security\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sxcqpcvm2dph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harris Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sxg639tvp4rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watervliet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sz8jtxy8eek1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Afton Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6sznr9n79sqr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Livermore Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t10fmct80b5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t1c6830fy2r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rush Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t3g52ej2w04c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mooseheart Power House\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t3nvrgym2qsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley Unit 9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t4mslcl1qqrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jamestown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t5pl04zge861\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"York Generation Company LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6t9rkf55dcsc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"George Johnson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tckmk26rh518\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Groveland Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tckqd1x4qv2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tdq4vt0hsry3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tdwjrlff4sz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Patriot Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tebs8vlqmcdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essential Power Massachusetts LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tez9r7ms5sb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tgjlnkfnz3k9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delano\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6th9cmr76wn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hanford Energy Park Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tl7c8flh8x23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reusens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tmqpdbemtr43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"One Market Plaza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tnt9bx2k029c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apple One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tr6hbw07yecf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colgate\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tsq8k8dfz3bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tsy6f3l9rkk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cotton Center Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tvmsyxqm1rw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bell Bay Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6tw0k9d4jpvh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Niagara I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6twsg2bsf361c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Edwards Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6v1c28e7ctlg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tumbleweed Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6v5m06nvl3cb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6v9qj10zdrykg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bluff Point Wind Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vdknd28sq6fh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Monumental\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vfkhb57mr8v1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vhnvdz8fcxdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Seat Renewable Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vhtv2frgxrfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hodenpyl\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vj7ncqbthcc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kimball\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vjpl0dn7e45g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sappi Cloquet Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vlbcq682fl89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dragstrip Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vlv69pq7exjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prickett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vmhczmsvprk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enterprise Products Operating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vmjdvbgv1tpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greens Bayou\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vpj9qh888xv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trail Ridge Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vpsfkz6mmhb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pilgrim Stage Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vqtdx4sjdt86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marys Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vwrdcgv99mwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cameron Wind 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vwzhtpp44sgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springs Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vxdhnhm1yg95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sewalls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6vzfb1kyy59b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manchester Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6w48814b9gg79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sargent\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6w4sw7ttytx74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meade\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6w9m1qjltx1b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Creech Solar 2, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wb1j6cv5c3dc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wbl3mhv4vv56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Collins Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wbspgtf09qw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wc1vzbvzt3sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montana Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wdsd7bj9fzt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharon Spring\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wl15djnz7yw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IKEA Westhampton 061\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wqc8blhmlqq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"London\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wrrpgvdthjs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaweah Delta District Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wt2rxxpdlt38\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Cape May HS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wwjngfkc76pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Inland Paperboard Packaging Rome\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6wxs925nwrle\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Jefferson City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6x01rn36q3xgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Lake Energy Systems\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6x14t2nmq41c2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reynolds\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6x1643y8fxvh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Knight Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6x3ks49tyrk2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPL Frey Farm Landfill Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6x4386yxf4kf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kleber\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6x9kq5q8zs7t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scandia CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xcxskpx7gwsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AC Landfill Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xd932zwbbyd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Inver Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xe8vnnw76e69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Acres Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xep8zbmgxp7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xg337rx66g59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lindberg FIeld Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xg4qk6dpm5s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mobile Unit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xhese09h8z7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lane Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xhyh77t42t43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodridge Greene Valley Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xjy7hdx4qxb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maple Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xk0lc2rvhbjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingsberry Energy Storage System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xnl146e4wfr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Campbell Village\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xnmwzmqy1v8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xnxw0yxsffyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gadsby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xq2yry44ttq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kennett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xrz9c3v04lm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rollins Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xv2tsrke3q84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Charles Polymers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xvjcmgs3pjpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magnolia Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xvx6x84f7kl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xwv4058efeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYPH-Queens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xy3vr6d919hf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westrock Hodge (LA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6xyy55cbwgnhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairfield Pumped Storage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y1hwvvly5zz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y2f0x048qtmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y5gr6dz7ly18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y5p6schw1p94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y6l0w123zj5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyodak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y821rl8kny87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y85q7h4ggmxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Reach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y9kfd4fcp4qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Howard F Curren Advncd Wastewater Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6y9x3pwldlmk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ybmy2t20y142\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6yc5kwdy1v6l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Remington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ycrmg7gm3dpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnson 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ycx5x91dpfr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seabrook Village\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6yeh9xfpgcmj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6yjtj64r13sm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9106 Rockwell CR\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ykjsppfjqr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sarah Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6yllfgz5j6hw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6ynp0l6yr9tx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redwood Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6yyb2ee3b0vkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castalia Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6z5rxkz1g7bff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John H Kerr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zbq49s3jkm07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barefoot Bay Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zjw6464j5cdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewisville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zk8tem9nw5w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanesboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zl9dc89v42zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Beaumont Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zn2eqhfcgzpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"eBay - South Jordan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zntg5vxjj7pc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zp4n72z683xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zrcmbgrbwsvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hell Gate\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zw5snv0ttt3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Putnam (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zwj8tgsxker6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewis Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zx8benbq44w3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hurricane Creek Lift Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zxf7pzj42swh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pennsauken Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zy39vsnjt5nc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washoe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/6zy70h7ekmknc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70020cemlshc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Lake DPC Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7002hltlkf1dd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Middle Peninsula LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7008bt49993hg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cimarron River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7020pn2th96xc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"US Borax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/705end5bj0tzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northwest Community Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/705kbxjfvncxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lilly Technical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/705zmqe8yndf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7062sh0710288\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation RRM\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7082m2ksrzt1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lederle Laboratories\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70c55ctmcc6q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation ST\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70cw4n54w2p09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DOE Golden NREL Main Campus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70e2n8eyfq5zc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lennon Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70e8ngmfcstk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingston Wind Independence\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70f1d8k8gq3q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anadarko Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70f76syh8j8c6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnston Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70l5lnen89g7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mangum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70lmwxq8wp71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilman Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70lv50nc3v8t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Creek Gas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70m0svevb1mhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McMeekin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70m4hrt2f4dfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GMP Solar - Williamstown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70nspgw2vddb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Sevier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70pzq8g9rtkc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70q0ntt4bvvkb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm Support Center East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70t4vjl3vbz0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70vslj910lz44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clinton LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70wc43n6dfl63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fowler Ridge Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/70wmb2109jxgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/711w8g2hbb1q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pillager\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/713y1vl5fe21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McWilliams\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71c7kq6zypc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Massena Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71dt1bz8e0et5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Breese\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71ercvfe5jb76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillard Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71ghmyw0tvqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryon Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71jk07qdnewc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seward (AK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71k5c98pn5xcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Cygne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71kyp9er1g476\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parker Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71lqdnymblq99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enterprise Sugar Factory\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71lw6bfd8qepf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71m00mqkm2fm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71n0nbw5bpz17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor J Daniel Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71vq8p1463zw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warm Springs Power Enterprises\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71wtxsbdz8c32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnstown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71y97ywxl6mx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B.R. Corcoran CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/71zm88vd5vfs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hall's Warehouse Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/720lff3c3www2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bankhead Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72721cf5xm186\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/727lgj6qtjpd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72bvjheerz1d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Leaf Solar XXXI LLC (CSG)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72c3b7h4qbv6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hilton NY Co Gen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72c9kdy6wl069\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milford Wind Corridor Stage II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72fdh6bejys69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tangier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72g1sz9e4fy54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norway (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72hwzqylbe7x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orono Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72kv0gfhwvn2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unalaska Power Module\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72lhygy0wfnt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Modern Innovative Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72qbwpydjpsjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knouse Solar Project 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72shr0yf0wzw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quantum Pasco Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72sm7trlreyhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"P L Bartow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72t8l4hfyqqs4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taurus Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72xssy2x8n4p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Francisquito 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/72y323s9ydf5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Happy Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73092nk4k41ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frank M Tait\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/732ld55fd037d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edgewood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7349546enmgj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sky\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/736ebn7tqmyr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nooksack Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7373m39nypfp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hydro III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73780cdswy4e1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tolland Solar NG LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/738s68x53hh47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/739bk26bej70d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Water Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73bpp5483t643\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"One Market Plaza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73fy1kl45xvr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lightning Dock Geothermal HI-01, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73jlsjsxe4nsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73k0h1ezrmvt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar Paper Co LLC Plymouth NC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73p4wwslrjtb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73sc6tlcpw1fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Disney Prospect\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73trcnd34mgxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73vszh9wnjg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73xkn8lvfnmgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harquahala Generating Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73ydb7jhxkr1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpena Cement Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73z07l4vcbnx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Valley Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73z72pv0hkes2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson Abenaki Hydros\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73zpqxfybn1wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rumford Falls Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73zw2emdhl9zb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R M Schahfer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/73zxcc9t2ywp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/741hth9xt8736\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WasecaSun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/742nslpb3wxg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muddy Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/743yq4pnx40y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7447eehex6rvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CES Sterling LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/747evdmg9hmd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marcus Hook Energy LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7493pfyblc4v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beringer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/749qlcdses0lg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74b18njkg1gtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74b4b9rkc02r1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westside Avenue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74eem1yhk2289\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74emzdvnbjz81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galesville Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74fwj04kx5f3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puna Geothermal Venture I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74g0g4plvtj2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moline\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74g2zhmqn3gw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74ghn743vkld8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delano\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74kl8d6lc5sk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort St Vrain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74ms3rj6fyxg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onancock Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74p1g4jvewcbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountainview Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74v23vlxhmx2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W R Gianelli\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74vtkwlmz56e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Godwin Drive Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74weh4jk1zgyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carrollton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74yx7jj99zrpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Solar Farm 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74z9kskm9d804\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wellford Renewable Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74zv45qjrzrtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYU Luthern Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/74zw05bjrzzz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pomeroy Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/750ndvb08e6vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/751c84dn4wz3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bolton PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/752mclfj8n1mc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City & County of Denver at Denver Int'l\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/752psg6eed2f4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BentonSun LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/753tfmkkqwh87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bunn Level Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7560z117gsrbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/757n1zmm7rvt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turner Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7584f4ry3c3w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carmi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/759wbn1fxd377\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BC Landfill Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75cwdfc9g2685\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75dq1r3emjxlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martinez Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75fd5cl2ygcc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manchester Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75flpf9rcytc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indianola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75ktx98wl3bed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Pauls Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75lg93jmymjx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgeland Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75px60ysd20db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maine Independence Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75q6gf1bckhpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75qb68zvdqck8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Life Technologies - Pleasanton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75r6c8dh6km33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleveland Cnty Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75rde33349c05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trego\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75rrrh2ty80b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miami Fort\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75sz8p39zm5rf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Folsom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75t0gxrn7mz08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Logan City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75tj7gqf0zw64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumpter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75vgcmpjc4gsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Afton Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75w50srz5cry4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Pass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75x06qtlndwr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palisades Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/75yqn1rhmjrs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dells\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7618prmxbqqqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Municipal Electric North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7647d7w3d6054\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erie Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/769jl5t3hljn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76c8sy6nhqvk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Cliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76frqkdy0f765\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Taunton Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76gwsg7qlwtbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG DG Webster LLC CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76n4vcwrdhlg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gwitchyaa Zhee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76pwectglk9j9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broad River Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76qrypblvec74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhode Island Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76rdhydwgnhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trinidad (TX)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76vjgfwl3e485\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Girard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76vlrwdgpzycc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76vzdwjbg9v13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76xbcf5mkys91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Naples LFGTE Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/76xw1sxg6wkh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Methane Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/770kdeh7xp9pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/778kbe0hvr501\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Park Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/779b306mfnnd4\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOTrUAQAAAP//AQAA//9AZYkFUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
#> [11] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Keystone Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/779c2blyhgjg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parr GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77brr82r9v8h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gardners Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77d0jl4hf050c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westward Seafoods\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77dyrsd7km019\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77e065grqbhbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Liberty I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77gny9vvly8s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bushnell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77lfn97686l3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Fork Tolt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77lnyhsejrfz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whately Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77mnzm6fk82n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Facile Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77mv4v38j6hcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orbit Energy Charlotte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77pxcvnctz9d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77qvr7blsyz8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fries Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77rwctjc3794b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcelormittal Cleveland Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77vlh4n9y41q\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glacier Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77w2j68hdbneh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77wrxkj6zs562\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77xl0nkkkdstf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coolidge Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77xvm6c3j54x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77y177ve5vv34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W A Parish\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77ydsh48tnyxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paisley Geothermal Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/77z8xeqvqhnqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syracuse # 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/780mqegzlcgpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Washington Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/780q0jbn7zdxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheaton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/781fgxrgxd41f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JM Shafer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/782ysf20ewjt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cox Waste to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7841rvrywg4jd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chuckawalla Valley State Prison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/785zemqp4p63g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of Lexington Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/786q8t0nw1nrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cold River Road Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7886pksqvjp94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Point Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78b3d6sp4wrt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurinburg Solar, LLC (Heelstone)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78b3jfxsqfg5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coastal Plains\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78bhjfwgk2ph9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78ccdsrezqn29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinckneyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78czvds2pgvs3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oklahoma Cogeneration Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78e1cbcys6nvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenwood Landing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78e9rf6mceegg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Youngs Creek Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78ecm18tvhe6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Celanese Acetate LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78h1dg8rr1sjg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78hv9mq34znp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Ulm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78msfhbfwvc51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olmsted Waste Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78prlh90h4td7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Model City Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78qq43kwcq0c1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Rayburn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78r82vbkcp406\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henrico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78svblbywspnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Attala\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78sy577vkw8f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smarr Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78v2l5dktksl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaylord - Wolverine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78x7qcgm58xg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh Combined Cycle Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78yw10xv2hhq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Provo Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/78zthnsgrkfrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sartell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7922wb9rj1tx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jericho Rise Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/792ee9gcwsv66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cove Point LNG Terminal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/796pk98vzq10f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cape Canaveral\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/798v9sxzfvsvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miramar Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79bz7fyff3ttd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockheed Martin RMS Syracuse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79c0249tbmd5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hog Creek Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79chxk6r1vy5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79d6t11t6dqd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jiminy Peak Wind QF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79ed29wfwtsv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79eksv7wgqz2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buxton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79ex10k01phq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Creston Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79fekl5q8qvf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allens Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79g1cjgv8e135\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenyon Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79g2n4c485b44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medicine Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79gpzg04v1wvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ralls Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79rcfdzwehn47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79s6nlly1jdj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darlington County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79ve8xxzmrcng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomas Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79wewjyg3kkd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79ymg79pbr02d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fowler Ridge Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/79zfs9c9j822h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Liberty Pole DPC Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b0cwng76rdh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Valley Wind Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b48v4jrkdmw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeCordova Steam Electric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b4ljknnxgkhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IFF Hazlet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b63gcwyjtfd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland Solar Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b64rfsek00h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert P Mone Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b6pr71dz5hh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Odessa-Ector Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b6sz0zt879fg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Community Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b72q33gjqqn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AL Sandersville LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b7hy2j273r52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chace Mill Winooski One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b7k7lrqvxkj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Total Energy Facilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7b8q04nqv31yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dexter Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bcj8q20j00nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bdp7dystdm85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algonquin Power Sanger LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bj2kq0dw72q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McCartney\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7blw87sstx7w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windsor Cooper HIill Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bmqwcvlnfh57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wrightsville Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bp2kdfsqy4q4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gratis Road Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7breehf2l3fbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oltmans SCE at Champagne\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bs22y0dzz36d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lennon Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bsrcdswg2eth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7btbvwzyxhvk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turkey Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7btz5fh4q8sh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swift 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bwz1rtxt4rs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Dorado Hydro Elk Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7by995hwv0182\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Primghar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7bymndvsf10n2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Creek Waste Water Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7c2296gt278q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Searsburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7c56kh4vlm582\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodman Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7c9n36y35eylb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newport Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ccthnfyf96sh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunlock Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7cec8fwk6gzzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7cldbznhwd7h7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peterson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7cp3gq4csrsv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olive View Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7cp53qx6f2t6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowerman Power LFG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7cqskxj0r7ywd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shaokatan Hills LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7cv3bgfvdp203\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Beaumont Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7d1khv5rz7c68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7d1xlhrcsxnz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant 31 Paper Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7d264b82rfckc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairfield Pumped Storage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7d3wkrln8clhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chandler Hills Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7d46h3zr9fbvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delaware Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7d4jz44ltxyy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pender\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dg1myyd290wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson Reuters Data Center Bldg ES101\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dg8lfxxkrbjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corvus Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dhs98jqvvkb8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cross\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dm5khd9xdyeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dm79n8wyn5db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dn6pnjfepcb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RS Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dnpxnypxrk47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orange Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dp3w7rx1vgx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scandia CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dp8bqnmpgx18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dpkn8z8xmmwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prudential 55 Livingston Roseland Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dpsj6vr93ldh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Falls (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dqg8bkt772f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pirkey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dqr20tmv0kl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ds91xjdqj2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay View Backup Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dt5yh8fwcrnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia Power at Wadley GA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dvejsrj0dw56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vermillion Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dw8749mcxc27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Delano Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dxv3tz4pl8t4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pyrites Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dxzzw50j2jl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefieor Medical Center Moses Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dyrlm21k45kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onyx - Brockton Thatcher Landfill Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7dzyc19vnekd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B L England\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7e030x296qwgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flora Site B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7e1j5qce84d2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shankle Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7e5v4kql2s43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Choctaw County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7e7cd66dyepq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BBB Corporate Headquarters\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7e9n6j7l7gv05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ebcj3y1tb4tg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View IL\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ec3ctrnt14z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederickson Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ecph3y6zlct8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sarpy County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ee9751gr6807\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DD Hay Road Solar 23 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7eezhvn3jw71b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ef0epmhvely2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mooreland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ef27nfr3pxg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raccoon Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ehebprk5mpmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoisington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ej08pf8y140f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ponca City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ercjcbfl86z3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7erj1h265tvy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fife Brook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7erkjw43tqf13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7eshtzdwh67b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fisk Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7evknkk8f84mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Versailles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7eylfz4bpc3xh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wainiha Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f0t3cxjh3qr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spillway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f19xl6198rh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Patua Acquisition Project, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f3hw33sxcd92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellevue Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f3zbs56dylp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Stuyahok\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f4wjlt3k84xb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flat Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f5ccwsgjtb1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f6l2cc9jmtx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cooper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f8seqxrqbs69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arnold\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f97ff5eb7m69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mansfield Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f9eqjq6x6xg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f9y730mkqme7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warrick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7f9ztrltvj9w3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fbdgx70ywn11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fbfvp51v8787\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thompson Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ffplqhfbwxlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Webbers Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fj1fvs0q7b49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fm56hp6c5sj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fmjqmpzey5r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Clair\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fn24xw70c757\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fp9c8r85yew\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watchtower Educational Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fr7278z54tpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delta Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7frrg74y4zrsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meramec\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fvn18f7vz5t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Delaware Tunnel Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fvtk8skg7pn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fvvcyjj7cxr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cutrale Citrus Juices USA II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fxw36h3degk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SR Jenkins Ft Lupton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fy3n4xetclrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kanoelehua\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7fzhjqb14283b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IGS Solar I - BWI5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7g673k2lqczgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gbyw1x93yt34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anclote\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gd40ce35m13g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastern Correctional Institute\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gde253ekrmv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gfjhgq77gv7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Devil Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ghvh93pkfjsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Veolia ES Blackfoot Landfill Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gjdpm8668\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rengstorf Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gjyhwsswglz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spartanburg Water System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gk23xqxh5b4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswego Falls East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gm34q4khc5k4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GenConn Devon LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gm5m5rfb9tkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buddy Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gtljl0bpxzf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wright Cuddyer CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gv3c0wqw2wxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Germantown Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gvknyjbc7x76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TS Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gvqxj6f3gkb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pima Energy Storage System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7gzcx5cjw6frh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spindle Hill Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7h4xhgzj0ndn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7h6cw2l6yvj78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7h6ej91mrtscb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rawhide\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hb6sv1lz9hq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaheka Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hbhew8xe1vzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Lunas Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hmh7yz1jb92d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hnev1denl5w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PCA, Filer City Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hpbx9n971p49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coyote Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hpt916khlg12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Facebook 3 Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hrpfzcqvnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Callahan Divide Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hsf8m48x4t1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chevron Oil\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ht90j43pwgj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Oak Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hwnsmghbl2w2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Arthur Texas Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hwvy500eh7t1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hx60p1xxzb79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southeast Chicago Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7hzl8c2q6y3b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Iowa Main Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j0lhcs6g95nf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CPS 1 Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j0ysy02getxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keahole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j1xpy1csss13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Bliss (DEA EPIC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j244cv8td986\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albertville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j2pjr0d6tgg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cimarron Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j47tzrmr9yl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Veolia Energy Trenton L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j5hrbfb1k7t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j6y41b92l3c4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spring Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7j8vntldr7k7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lucky Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jb1brzq798s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camden South Carolina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jclt6jq46l0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Story City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jcsppf4m6qgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toca Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jee1hjzrveq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cyril\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jg1rn82xher8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpaca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jn29rp02psyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holcombe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jnjzj9wm6je2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ormond Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jqqh47x5lcx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deercroft I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jqztpks15xy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GreenWhey Energy Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7jx4ww005l04c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bradley Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k0d86h17vwlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E J West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k1z901nc0pkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Davis Besse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k28gqp71sn5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k2nwg5t5hvyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barber Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k55zq9yhjpx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Topaz Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k5j0lydh4pb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LaO Energy Systems\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7k9jgcfe67ggh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuxedo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kbq5rgkq3x07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cambria Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kc5xk6x6hdn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Valley Wind Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kdfzmyqfqklf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Janesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kemq1m4394v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horseshoe Bend Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kgbhxz5hjqf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinckneyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kgvtd5pq49g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bancroft\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kh03bm1ccych\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7khb4fe576peg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hudson Falls Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kk1sdrwfzdgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweetgum Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kkml890hem0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foothill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kqc7qetxhzeb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maddox\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kqg81rmm3rw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fishing Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kqxw80p4bc3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victory Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7krql8pgfm064\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kscrhy4ylkef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitewater Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kv88edw97byc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Neal Hot Springs Geothermal Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kwh9h35jp6c6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eufaula Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kwkngfke3h57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodman Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kxrllnc68h27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay View Backup Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ky6zv5dt1c21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Spruce Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7kzxb41eebm94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nueces Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l1gdknt4phn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millstone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l3zkzbtxbew1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l4kqxj25802b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l4vppp7wkrsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NGP Blue Mountain I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l6g8954rzf39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Batesville Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l7tyefby80bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Fernando\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7l9d4xfxf65hg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newberry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lbwnty4cjph4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lcctf2kc0de7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EG178 Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7le9cjnmhf9m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Center Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lehx198nk4y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wakefern Food Corp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7len8qgdtrzz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Benson City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lf2k26be28rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Arden LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lfjcwfzddjb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CA Dept of Public Health at Richmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lkkpgm9k6v47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copco 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ll4th0bfts27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parlin Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7llqe4whsj1k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lnfhfmstx2jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dietrich Drop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lw53ktcb1j71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grayson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lxtq02p7e7f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountainview Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ly79krq1jmf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Katama Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7lz0132l9hm7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Friant Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7m0lq4ekgvk8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9106 Rockwell CR\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7m5b052yes7q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C P Kelco San Diego Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7m9z3nslycq88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dwight\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mbg24k4ef2x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ReEnergy Black River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mbq4gf8wpcs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norris Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mcqer2w5t128\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mdfnzkm8g2e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Junta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mkfz780mx4n1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm Street Substation Generators\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mkrx0epfn194\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake (WY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mlfdpxdn7ged\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #26\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mn34qc1eqsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syl Laskin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mpql7yssdht9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yankee Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ms418jwvx656\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Post Wind Farm LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mwdpjpqk33pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bath County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mwgedzf0t7rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ACE-Stanton A PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mwhf16gbhh78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7mwmzz87mvp73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Trail Wind Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7my1dnjqp1kd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bourne (MA) - Holliston I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7n0kh37t8s7fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Point Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7n32l2dk40pt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Strata Roof 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7n5netl4zfrvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Linden Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7n7vtfg9krhq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Melones\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7n7zrq07zcrvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ncl4y86qgke2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G McNeilus Wind Farm Dodge Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7neggfsjkbdsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Villisca Municipal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nem53yqs1xw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitney\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nfypgp62gpg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harriman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ngrhcz4tx928\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nll9nsy0we71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Naples LFGTE Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nlptj5menexf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nm06m9mrk8d8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Mustang LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nmfg2yn85gm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MESA 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nmj56j1mcpd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingsburg Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nnqzszb40c8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westwood Generation LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7npfjhp13d1e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Diego State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nsbw2k0qzemd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamoni Municipal Utilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nvles9z0fwe5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wateree Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nw7v2p97hfs7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HXNAir Solar One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7nx1rq38z47yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellows Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7p3lvmlbp0dhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7p6h1v4qesjyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SF Southeast Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7p9309cy9nhf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NA 1(Hagerstown)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7p93g3kn2xw66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Peak Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pb641ls8rr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie State Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pbdjvjven5e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wateree Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pc6jhdx8hvgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pkldqlqedte4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hungry Horse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pm1rx5bljk8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laguna Water Reclamation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pmhjfj8h4e64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Platte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pndp40qg2x57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pp1x0edchgqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ps3mlmhl4298\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Ronde Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pslgbs1jyjrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Kearny Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pwvd8qb41cm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Mount Bethel Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pyckjw4zn4y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pyd7wk211cv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7pzkwe9p760g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Energy Resource Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q0y6hvh34m92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells IC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q6mn9ggmmrch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q75zhg1mkr18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilton Wind II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q778pt95ter5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q81gscfdv5m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palm Beach Renewable Energy Facility 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q8qk80qms2y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Center Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q9fs3m9zlyc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pilot Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7q9rew10n8kdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Texas Petrochemicals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qc9gjljgvqdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hammond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qfx7d574jtlg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qhc1gjxy6qz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qhsp5mqmm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamilton Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qjfcllf9kndh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BASF Freeport Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qkw5hlgk76k\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McPherson 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qlr1wbhfm3m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qmd3phlf43qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 2901 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qpreb0kpns98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montgomery Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qs25qdhyn556\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WED Coventry 6\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qsjb0exmhhf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sappi Cloquet Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qslx40zn06c3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drop 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qt3b8kmxkm4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geothermal 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qvcqsdfhl5r\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Energy San Diego\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qvh5xfz8jw26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blythe Solar II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qyhkz27x6e93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madera 1 PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7qz558bfx7bh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Babylon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7r25rrztdj9z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Papillion Creek Wastewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7r43zszp09bxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Giffen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7r772ekeksbkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Salmon B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7r9se4xgqpdc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sequoyah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rbsdstnbycx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ryegrass Windfarm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rbxtyrv35cg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lennon Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rc3bxtn5ybk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seward (AK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rjmsjkn2kjxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"James A Fitzpatrick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rlksmrm2p9jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waters River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rlrtex19s9e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JLL-One Rockwood Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rq424ltffs45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calcasieu\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rq5fq1rn4m6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Leaf Solar XXV LLC (CSG)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rv8smxft3jrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ryqhvcn0f6y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MillerCoors Irwindale Brewery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ryzbdqjpdcs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalmette Refining LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7rzw69tfvrhy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7s1hdle6kmvmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harlem River Yard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7s2nsel4xpwk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7s2pkeecd21vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Cloud Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7s449w5vjft09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G G Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7s5cs6knxn2l7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coalinga 6C Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7s7pzp5swjw25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Byron Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sfh480bg0g18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sfpwcj8e5gkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mile Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sg5dxtwth6b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sgf571mzcmkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pecan Row Landfill To Electric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7skvm6h58hsp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maquoketa 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7skyxff17dkc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingman 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sl6zf49vwhg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7slhlfdl4khw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 55\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7snnfr08b05x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sqdjydkjsleh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Venable Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7svsc76p562l9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valenite\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7sykcpn3g4q58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7szmse78wlrnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia University - Johnson Farms\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t0gzkme7580h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stateline Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t2kmyf6j17w3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maple Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t2wkp7g9w2b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Pastures Wind II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t31zjvdllzjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huntington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t590byf2c116\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onyx - Lamphear Road CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t6f4cnqw66qc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Millbury Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t6t8p9gdydt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t9j46cyh1sj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jarvis Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7t9sr4flqb2cb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Solar Farm 7\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tcr4bx1k9z82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agua Fria\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tft3l0r95zc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essex Junction 19\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tgfk3eyp0tt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tjsp1lebtmg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spruce Mountain WInd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tlcbe73ns1m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manway Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tnmh3cset1wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apache Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tnxfsy9djs66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler Solar Farm 20\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tnxt0cbrkwgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hew Fulton Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tq27bkk09pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star California, XLI, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7trmm79gnvk93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Falls Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tswr0z82erqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tvyhwyve15t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Hill Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tw9ssffmj3v6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hidden View Dairy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7twc942j48z8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7twdk6p8n0l2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Solid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tyn8hg5g0y02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Washington Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7typ734wbh764\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Donald Von Raesfeld Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7tz21bzd07t2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Traer South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v00cl3prg2e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v02k2d2de807\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salisbury City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v0tlsz356wdf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeBary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v33edqwevh0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Esteros Critical Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v3ln6f3tf39c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mariposa Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v59zd0fhe895\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Piercefield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v5dy5p0dnt58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Du Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v5swkyw3f6yg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v64h6dj4hjk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Oaks Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v79esrv8sd0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valencia 1 Solar CA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7v90z6xlvsds8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vbdpqfv2y65c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emmonak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vbzb905zzv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Putah Creek Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ve8cms12bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martins Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vghcfts2med6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ontelaunee Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vgw7y078ywb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wildcat Point Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vjytfx8cn68f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoonah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vl83pgz5hjf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TX Hereford Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vmmhxysx43rf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vn5c4xhhwh9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Passaic Valley Water Commission\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vntbvs7s3x2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vrf6ke790ejc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milton Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vrx1br1r3s6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hatchet Ridge Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vrxvqdnh6nn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cane Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vxql1fl6gcr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumrall I Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vyrdmhldhb35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Armadillo Flats Wind Project, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7vz7php2tt73d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7w66enzxdr68b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geo East Mesa III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7w7t4l3cc34vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7w7tgmvbmzt53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spier Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7w7xk5ws664th\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gambell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wbd35g05ph2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Integrys MA Solar, LLC - Ashburnham Site\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wbe38g7nqxbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fiber Recovery, Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wcydrwwq0m1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kapolei Solar Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7we5jr0d9mk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Painesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wem8r82dg0wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Canyon Windpower V LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wg1ejgthlkk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northwest Community Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7whzkd6w9x4k5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Brewton Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wjxr5rxd8wnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wmw5f5ntw53g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kimball\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wr3fbvwdbgz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bronson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wrq7bp560pf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9107 JBS USA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ws389es4x953\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairgrounds\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ws3gmn2hy1q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wsbscqcewce1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wsjxgdhgfxyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mechanicville Hydroelectric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wtd1q8bwwckb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lieberman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wwheshx83qsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silas Ray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7wypq01exhsm7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frank Jenkins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7x0k21f5edrs3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burlingame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7x57s5hfgjb18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Bend Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7x64gqgmn0t45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vischer Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7x6fzdte7b9m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7x8r18g3qs6y\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fowler Ridge Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7x935dys5743\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminoe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xbepqvq65947\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharpe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xbjjsen5krd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenet Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xdjdj564ep59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beluga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xg2l6jv2j8e4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hammond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xgk0nmxsm9ff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Canyon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xgmv6e6lm4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xh6hxwshm6y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Georgia Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xhqbpeffjwyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherwood H Smith Jr Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xk81cqqtmrnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lightolier Wind I Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xlc3ykkpvhvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls - Saranac NY\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xll4ggdetfv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Ridge Battery Projects\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xmndp395q1wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TAC-Distributed Energy Resource Int.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xr21klt5j5wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xxd4ww51efs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xy046v2gte5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7xzf95p3l8xvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bloomfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y040qwp1ske4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y1gvj6c2bjph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hay Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y1skvhw4r9n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y3f3xrlsjnr3\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOf5oAQAAAP//AQAA//8PpWswUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#> [12] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Solar Photovoltaic Project #10\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y3npcfltbel3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adelanto Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y47xm9vnlnh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bypass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y57jvl453neg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coso Finance Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y5kh4z542pwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y7ffj1wj3yld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y840fedzz7e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Torrance Refining Company, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7y9v27j1mjlq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #42\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yc4v7grfz3s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Philadelphia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ye32eg9wg8fd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AZ State University - Tempe Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yh9b8fyk4v5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RED-Rochester, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yhtqbmf3qqcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olsen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ykzyqqqb4l53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dodge Falls Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yl3jqwdv41t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fall River Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ym4wjfyjv0xg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Myers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ymf4mt86mg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lloyd Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yn04tfvkfjn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswego Falls East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yrjws0cvnq39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westrock Hodge (LA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7yvc9st1pzw3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Salem Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z01r539em3hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z0wn095r5zmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Community Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z34k52n00tk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehorn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z3mvedymlctf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Michigamme Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z6c36wxmh1d6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z72fkjkdg4rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside (OK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z7gk994pq38c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Airport Industrial\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z7s7h9vgncy4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z80fz80ml872\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MAS ASB Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z8rlech05lt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Fe Springs Rooftop Solar BLDG H\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7z8rzh7xqxtw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bartletts Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zbyxhmjzqc78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beecher Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zdhr779lmcb8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zl44f3c8qyvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Bend Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zlxlcyrnyy73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roosevelt Biogas 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zn62el1p4179\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spirit Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7ztgh496448x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Superior\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zv4nysskp9th\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albert Einstein College of Medicine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zw7473xgvxh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SeaWorld Aquatica\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zxshrx4xmlw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ludington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zygx6wj57jmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeCordova Steam Electric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/7zynxd72p30fg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Century Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/801cewr2v41bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ticonderoga Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/801y6025z6ly1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/802tmdph1xwx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noxon Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/803s1fzsfjjzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pilot Knob\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/803xtsys1zss9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Bravo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8044n7f5jjf9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maxim\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8049tyqcgbf45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Gaskell West 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8050zmpv9txx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harquahala Generating Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/805rxfl1z3wvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santeetlah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/805xzryjz93l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beacon BESS 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/806t80dctzzrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Carbide Seadrift Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80757b7mhf037\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garrison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/808qgrsx5lnbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ellettsville Solar RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80b3rhwkns0y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NY Times Daily Production Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80c6fqwgfr3x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kennett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80de1b897wfnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SPA Cogen 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80dpk3l2r0l31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80ensdpw2ygrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80hqesywbdx8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mojave Siphon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80jdq8h0pw78f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80lgpj1xq8e6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yankee Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80lmz81qzdkm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80q3trkpw9dvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80rkld6f1xl97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jocassee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80v13frz0v40c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Kammerer 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80v4cydfkeg4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80vn3dqbkt22b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Atqasuk Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80wdd5v5gln59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Point A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80wvzjm25bky9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taft 26C Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80xwl2nwk6d53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80yvsywrprj59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redding Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/80z1r8w6b3yz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller Industrial Parks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81192vhsm9yvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Daystar Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/811tvz47yxnr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tannery Island Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/814fcnth6e9gh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterford Holdco CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8176ehz5knj04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethlehem Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/818mgh3smlvp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beluga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/818vc9jr4gyvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81g2ewgbv9lq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Industry MetroLink PV 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81gxsncl9ptb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jarvis Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81hkz28hl3zg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellefontaine Gas Producers LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81jy3btj409v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuscarora Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81k514w75wqjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Griffith Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81kky5rtg7zzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carina Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81krd8qb7ry86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windy Flats Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81me3509pdrt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81n2svsdtwmc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81nezsb441hq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Riverdale Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81njg0s1fr6d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81r60g36ev4v4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Ulm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81rc3qhmfgn52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonanza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81s0qplm33n51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calhoun Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81sqqxlj830b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81txs2wsg0e92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mission\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81y12fk18k7lb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/81ztvy2dv3gs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suwannee River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/823tfdbktchsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oconto Falls Lower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8249jgdhgh9th\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope DSR 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8253847scdc74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"USG 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/825590t91386d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/826rc6dv7jyhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darby Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/828gsbkx6hk7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coso Energy Developers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/829r7gl2gk5ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82dxndtz9ejy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Comfort Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82e88g96p9w3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SJA Solar LLC-Solterra Monastery CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82eq4eechj6tb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Janesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82eynfh09kr85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RED-Rochester, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82gk980b8nsd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #27\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82m18ybjmlc9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oregon State University Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82psbnhejwty3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unisea G 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82pyqb32t3662\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82qyertm253x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82tq5jjws9v34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Loudoun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82vn7gtys6eg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82y1xw145td1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82ydrpq3qzyzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alta Luna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/82ymlvjp6jcr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cochrane\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8370wzdcxyzl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Veolia ES Blackfoot Landfill Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8374f6mxq74t9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefieor Medical Center Moses Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/837tkz2bz5hw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar Paper Company Rothschild\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8399p5e14vv69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Bergen Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/839fjt83wx5yb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PVN Milliken, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83e22e5z1g6sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indian Valley Dam Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83e4xbq7cj0q1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYP-Hudson Valley Hospital Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83ev6ssetrpr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"KCP&L SmartGrid Innovation Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83ewc31b20tn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gold Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83f5k17pqlzg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakwood Hospital & Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83fl3tsqpr7td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock River I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83gzx0vf5wpm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shenandoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83h7lpp36x5j9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83shf3m5tnfb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Dillard 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83t5d6xyvrc2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83th9l96ncs53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldwin Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83v51f17xgkk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silverhawk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83w69wmpknbt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9502 Eaton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83wrpx30zj96h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83yjfnc8hnq33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/83yq7mwc9r982\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Marys Hospital Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/840cb9t3zb73c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/840gn48y5dxw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fontana Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/842b9gn5b6zr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8439qmzcq2skc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/844kn4ceg58v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Pine Hill Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84e8rne9613z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Regeneron Pharmaceuticals Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84f2j5f23pfrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar Kingsport Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84h6cwd94hhb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dennison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84ks84q3qke26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danville Westover Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84vlkg72dpvwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caldron Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84vxt6vmkbeb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medical Area Total Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/84x4hytvd771g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pfizer Groton Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8530z3ebfkmlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/854v74g4k3vb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8556d4x200mrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quail Run Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/855srpftsk1pc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa Distributed Wind Generation Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/858mrrptq5qr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BMW Manufacturing Co\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8597jbm29vy5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Everglades\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/859qpeec5ew13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pickwick Landing Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85bmj2lexrhc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85d20rzqrnct9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rensselaer City Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85d4v75x5wv8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tannery Island Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85d9b0nf30428\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oneta Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85m5jqblwv5mb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haiwee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85php2l3f2mxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prima Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85ry2zqp2gm1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pit 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85skkf1stj3m4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85twlcgy66vy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisconsin Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85vd8erzzjbh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tulsa LFG LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85w6d4gk93vp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneva\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/85xj64rt69p54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perryman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/861292plwqd16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merwin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/861x6mh73bwqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mustang Station Unit 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8620d7gyhhh54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spencer Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8623021fsznbb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Rucker Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/862gvwz358y45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisa Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/865d3pv3d2epg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snyder Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/865w8rwtb01x1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delphinus Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86608dj5r53eb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/866cxdzkbz286\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9205 A Y McDonald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/867qe2c8z1gmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"George M Sullivan Generation Plant 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/868sep9qtzplc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ground Water Pumping Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86cw4m8fff1j2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86degpygeb1ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86e1qprfnth1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86ec417rf4ve\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #28\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86jswfdjev93d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakdale Renewable Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86kb2mdwcb35c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flat Meeks PV 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86kq2efsbyyvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tok\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86n2wz4npr7z2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar Paper Co LLC Plymouth NC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86nz0lcpftrj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterlington Greenworks LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86p2elhksl8t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86pdlg2q3z3y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Perrin Ranch Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86rm4y2l91921\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Branch (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86t5wpypz1gyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shell Deer Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86tqyyk2810wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcelormittal Cleveland Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86v0hrxqz8ev7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86wv94hexcc13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hawaii Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86wy131wr3f84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Crystal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86x9v2gcc1t62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Acres Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86yv0lhz1fk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West County Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/86z64y1yzn3x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Hill Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8736jv0p4x4sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gambell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/874v6lvwcg384\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paulsboro Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/875sb16plfr7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/878cs0xq0rfy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NGP Blue Mountain I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87cz2knbxqkw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87dpsk3pp1ly7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carver Gladden CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87e92d4st9wdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillon Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87f5bbhf1w14g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mormon Flat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87fhbvplw9ryc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palaau Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87gxc5k5nqjnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87h0k91nh81w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87l9r713ft3x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drop 2 (CA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87r1gmzfhspt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imboden Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87s0wd7ctm6v\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87s867fjm50c1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meldahl Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87t64f2vy6m86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angels\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87vlpeys5v6pc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Woronoco Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87vq62z6j4e9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Worthington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87w8b5wzmhrw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/87wxlzvz9vg6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bellmeade Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/880c6jresqqz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyandotte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8835qy6q4lcn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minco Wind IV, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/883e8pbttm1w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mobile Unit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/883zxysg955d5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grapeland Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/886hm6sv7ve38\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SR Hazlehurst\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/887xyd5rnmvzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoisington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/888rrg6swtx41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Grande Valley Sugar Growers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88b42fh4q056d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DANC LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88d1w7xh16d79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88d8wxeycdss1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coughlin Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88dndy5p41ly9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corpus Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88dyg5x2ttx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ubly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88e6ebslxszq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deercroft I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88h0snxzsf213\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sentinel Energy Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88h3efj6ng8p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88j93vxhze332\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PPG Riverside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88l1bjcvqrf9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumpter Energy Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88nh9x2fnbnv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Varick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88pq9ms36f07b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Acres WM LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88td5cyr6m7vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NCAH Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88vqfdvkdtfv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brevig Mission\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88vrmj619bxh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Finley Buttes Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88wetgsq0qek3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Madrid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88wv4e1xkgyt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drexel Operations Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88ycpwmj4t1l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler Municipal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/88ymw5sx3cdf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midwest Energy Community Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8906rd5n30n78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Ridge Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8947bj3h8bf38\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Flat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8962839xzhq61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trans-Jordan Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/897bx46gzf1t1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nelson Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/899jgvztdqr14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairmont Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89bg4e5kc3k45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carroll County Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89byvbnqdwxx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Plant #2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89fcplm64gtx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89h27mc1eb7z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DOE Golden NWTC Turbine Side\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89j07vedgtdsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scattergood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89kcxj7wzx5qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moose Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89lkllcpxegq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IKEA St. Louis 410\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89qepzww36pyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Wind 3 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89t1yrneynzt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Trent Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89veqwyg8s5tc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Earl F Wisdom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89wgs17cf5qh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arkalon Ethanol LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89x3pgpdzv3g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"County of San Diego SBRC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/89ynjr0jt9r8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8b17qxqvv6wq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brady\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8b1frcgzfyp79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Venice\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8b2ct12dlcrd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanai Solar-Electric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8b46hp31tnke\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solano County Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8b9wf2e6yq8z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar - Woodland Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bc611lme08m1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Luray Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bcgkll0wjhs2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mobile\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bjnzc4fcxyy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Slana Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bkfb20s77qf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Regional Water Pollution Contro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bln68xrlv9x1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cobble Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bn56jjdfjr47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolverine Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bnxrs97fegm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bnzzd2pd3pjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delta Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8bt3f8m5n3jnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tessman Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8btx3t9vk5s08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyoming 2 CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8byjfcpmnvmn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpaca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c1f48rkzbbm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millbury Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c3407xg8gd02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ONeill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c3lew0vl54p2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Hills Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c3wxvmjgk1sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Municipal Electric North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c44mpx4gcvq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c45rf1we2fgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Strom Thurmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c4w58319m6v9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Falls (ID)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c5k5js9ysywh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ryan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c640txesxynf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Armstrong\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c6gnd7jsmg9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8c803yzs6mhr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Corp - Nekoosa Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cbspnlpgpl2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plainfield Renewable Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ccyhc6wbqwe6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parlin Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ceyvc25mtswb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CED Ducor 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cg8c12271pt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Generating Station Block 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cgsyd64zz3s7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jaybird\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cgwbsztrgkrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vuelta Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cj2qt2hfkvtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yards Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cslf3ftsed6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Niland Gas Turbine Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cv85xrzt4b5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Francisco St. Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cvndpp9ppxn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hobbs Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cvrfrfl76xb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cvxwqfd3n1k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Camden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cwwxkghhd2df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rowan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8cz0d8q00dxn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River Eastridge Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8czzcw54gx8qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Falls Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8d2j9kn1pfg7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8d3t7bdt2g2z3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Home Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8d4xnt6nm8xm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Utility Venture Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8d5xs3jwdwq7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8d71swm659lc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshfield 6\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8d7bp8c7q8d86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"French Paper Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dc28l5lhmc5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Del Ranch Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dcbh17654ts9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Catawba River Pollution Control\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dchcjhmr7qd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gavins Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dcr8574xqc24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ArcelorMittal Warren\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dd3zpyvmrq1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AL Sandersville LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dg0c031bpjn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dhdz2mnt5tb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dkq598yyth09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dl1hys330szb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northfield Holdco CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dl2xbm3lwwn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Falls (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dmm9h01706f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottonwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8drklt2l7g0pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dsjjnep3j586\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dtg88h1xkdm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxford Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dvkq19d0zdj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Joppa Steam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dw5mkcxezt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UCONN Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dw7n4wnnlelb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spring Mill Solar RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8dx3dnm7kepp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gas Turbine (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e09jkcvdzcj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nimbus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e27n7tnvpw53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utilities Plant LAX 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e3lr4yvcvb14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Creek 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e6875gshqt48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e6cyc9qjw99h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e7lwqg6962x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blakely Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e7ph20ex5x94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e7pm6dmz80zd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Reach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8e7rwnrhgpzt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mint Farm Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ebfwf6esb4g4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyandotte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eellv5t7y2wc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Mount Bethel Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8efkyl7je0qn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eftej70ewh58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bartletts Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eg7b4t7pfv29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bronx Zoo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eky5cy7y4nn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8embbp6pqt7jb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hatfield Renewables Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8en7g811lqmq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deertrack Park Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ep0zv16m2sz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foxfire Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8epen13fvr09b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eq4q64yqlp86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indiana University of Pennsylvania\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eweppbzfjx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bulldog\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ex1c6t7pf3vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suffolk Energy Partners LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8exnekshczcpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunkirk Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8eztxpr7sv2t2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport McMoRan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f05g73kn4q9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BPU Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f0766ejslrxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walter F George\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f29dvjkvr1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f2fq9fhzf403\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tulloch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f2xpsphqqcv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Shoals Hydro (NC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f4t775hb21yb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f593mxhjnx52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calabasas Gas to Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f5pnsxly7359\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenarm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f60ljm8xdc6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingman Municipal Power and Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f6kj598ert35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSUF Trigeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f7dvkypwq9r8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shavano Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f7k98m2b7jk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CH Resources Beaver Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f90gznyvjq91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8f9bl23nr6kld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakota Ridge LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fcm54kjfwnmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coldwater Peaking Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ff32vbqjqcj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walter Bouldin Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fgnl0yn2brz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Oklahoma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fhm9gpwnr664\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Philip Morris\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8flbk33hewe1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fmcsc0kx6t45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunterstown Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fr5xly30h1kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clay Boswell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8frex3h55f9r3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingsley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8frm0r1s1dj87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederic Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fryrf7nsmlcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Armstrong\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fsw7sbj8me39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fsz4lqxzkqd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leominster\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ftd6n60vq1r\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (LA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ftmj0dn6ycyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biola University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fxwpdq7reteb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hibbing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fyrr9qpfx786\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Centennial Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fytqywqnjtlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salisbury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8fzev80dkpqxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g09g0tfs3132\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Springs Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g1sqstm2tgz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chippewa Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g3yxq31wd4f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R M Heskett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g4qxmxxjm6lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robeson County LFG to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g5479x4hjnd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riviera\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g63rlh0dz642\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auke Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g64fg16kvtxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unionville City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g8r2ek0cchk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g9528ccdeyv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northern Westchester Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8g9kjs64l2dk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny Hydro No 8\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gc3ef6lgbvwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaiser Downey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gd7zz96k6m63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Nuiqsut Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gd9vcn6xtgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tazewell Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ge73lnpp0eng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Norfolk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gfhz5mf88p72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sky Dairy Digester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gh44fjxll8f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vanadium Redox Flow Battery Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ghdd4x4njzn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soluga Farms III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gjflzky2bly\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Point LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gkfrlsxlvlt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomas A Smith Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gl5d138cr632\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pasadena Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gmrcjyv3r89d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gnswhgnpl5f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Ridge Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gnzth8g4ngtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beacon Solar Plant Site 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gpx9c4qe7fs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gsev30b1ep35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gsy1b8gfk97c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kalaeloa Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gtsxp23dlmv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gvnrbqxg6hgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 46\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8gwgzqbjxqth2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8h099jv77x2t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Municipal Light\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8h373dlgdtc03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toyota HQ Plan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8h4qrdekg44rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UMCES Ground Mount\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8h63tqgt32t2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinyon Pine II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8h7c360rhdtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thompson Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hbz05g8wbdq9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hchh9v3nghch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victory Garden (Tehachapi)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hfqw2vrqhd17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hh83g4njm1gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deerfield 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hhk3erddgvdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hn53tn19k26f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seabrook Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hn6xe6yr162h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hnsntxgjsc03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fresno Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hp7r99f3xy69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osawatomie Power Plant North Sub\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hr2s609r4n04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richard M Flynn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hse4tj0se8qc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Libby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hshr0bmygrp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buck Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8hyh8xss6b565\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warren County Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8j2lkm13kcj66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Carbide Seadrift Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8j3k8mkp2tz25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Houweling Nurseries\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8j4mqpvkqxd9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8j4t27zxzz6x3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seabrook Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8j5p0cjx4bq4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jeffrey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jcgny8jz2b1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L V Sutton Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jdxdzzpld1sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #16\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jfe37wyl05wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ellwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jhewbr45z9f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biola University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jhxpct4vlrw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enel Cove Fort\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jj38nlmemdx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barrett PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jnck7cchxy56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C R Wing Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jpzjt46q3pn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenarm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8js7rd67zmds2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corvus Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jt8nmstl4k2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8jz5em3ln5d5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9107 JBS USA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8k6y8xv6f52ec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingbird A Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8k7ekzfbkj8l1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Block Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8k81kcym1md0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8k8wqjzdkf2hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lateral 10 Ventures\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8k9cpjfgek0z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamlet Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8k9lqpwbskk85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonanza BioEnergy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kccnb5hqc79b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emmonak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kez5y26cs1yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henrietta Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kf3tk0fb4k79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Falls Solar II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kg10fk15h1q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kemper County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8klece9bmyrg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesapeake College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8klf233wmkwrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newhalen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kp0rbpkcfgzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paynesville Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kptnewwgsjn\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8krndxrv2yce8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Hampton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ksm34ljsg4c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Myers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ksvkblccmb14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ktjdrt7wx6mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northern Westchester Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kv6mxde9e186\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windcurrent Farms LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kwzwx8x6xwt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Kaktovik Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kxbxtsldj7n9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shiloh III Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ky5jxbkn3992\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genoa Diesel Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8kzm9zwg094r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower No 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l0twq9gfl96d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Day County Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l48sp06224mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Channelview Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l48yjkj2s6ec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Bonifacius\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l4pzwx9qgr96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cheoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l566s3303gj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agrium Kenai Nitrogen Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l69sr3f36vw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View I&2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8l7d3xxveet\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Wing Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lbn2z9yf9d0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar Paper Company Rothschild\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lbzb962m1xrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Neely Henry Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lcnkq97chy5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Napoleon Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ld8sdqd39y64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ldhyrncs3wv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaweah 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ldpryctr9mp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor County Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8le531csmc7mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferson-Lewis BOCES Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lez24dkt7br2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dakota Magic\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lezwq8jg9nzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lggrmfjgzgrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algonquin Windsor Locks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lhz2fgwj7k3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valdez Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lnvsbw0sfjzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockland Bakery Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lnypm3b3tl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleveland Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lrmpzhdb9rt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern Bell Telephone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lskfmxyw5l33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Falls (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lw1lm53hgp87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lwz5b0e1g73f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Top of Iowa Windfarm III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lxc9kn9t72v\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dell Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lxndb9z67427\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8lynyfdf5qwv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forward Windpower LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8m1yel3t0z08\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOT7oAQAAAP//AQAA//8aLrObUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                              
#> [13] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8m2xcjs544jw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Albans Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8m2yb9y334z0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Johns Riverside Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8m516jwjs90ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Columbia Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mbj5zcvwzfw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Power Station 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mbke3ye1jhcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pierce College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mcr212ys485b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mdthe1x6v6y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mehs62ezxr5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coastal Plains\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8melfpsfy7v89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gadsden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mf6ezr90ypw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altavista Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mfh4kzkt8tb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Cities Hydro LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mgvbpdcsf5c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schoolfield Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mh86gpz0nx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Century\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mjk1tq0v1y29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hugoton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mlkc10jdhpq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coalinga Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mlxvbncs9eqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Park Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mn83jdcgv4c3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pala Energy Storage Yard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mnlphfcc42gc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castle Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mqlkgsdpz4w\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mrvhyqj07h3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mtqhkf1cpgh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Centro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mxt5l04zzy95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oyster Creek Unit VIII\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8myrn7kqd1eh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8mzlhvcnnmrlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n0jf0nrbxm41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillard Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n108bgtkmj72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fermi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n1d9ek51cw53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Augusta Electric Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n1v0mnwm95f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitewater Hill Wind Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n2zc1zfgr297\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingman Municipal Power and Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n44pffq99546\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverbend Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n64rk1jv0svh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n891t4dmjbz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Road Peak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8n9q9wqx0zw6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Commonwealth Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nd0pwtess3x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selawik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nf6z33kxv4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wyandotte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nfb9q4wn935g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stampede\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nfleqwltm29b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ngvejrwk0yn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Girard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nh28c2c0w279\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shepaug\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nh9p1mejx7n7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R D Green\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nlxgqpw8qvtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pratt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nnj009pp2d3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Falls Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nwwg5xezjgw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arnold\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8nx11py0ywkc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 1 Freeport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8p1tw9czmeet1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Junction Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8p4nhm7bksgv1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Open Range Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8p8bcerk2tb63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Misenheimer Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pcz5cd0wzkw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pdmzdlb7vyl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domino Farms Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pf18p1jly1lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8phkpm5rd7p69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 59, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pjtdpdy1qch6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"David City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pl8ygelew4t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Portsmouth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pldknrprm50h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pr757vxtke3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8psd389fmr4jd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8psy1hbggjzk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pv7r6w850p0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Last Chance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pwne7vp7k28b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stryker Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pyf99z87lgnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pyqrq6drwnh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterling\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8pzppppzx20xb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8q1w381h5p8v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MDFA Devens-Saratoga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8q2bmq7fqp94g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSU Fresno Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8q58l2x0wefe8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8q69f751g8q83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G W Ivey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8q881gr66r5j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Escalante Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8q9z0xmj5yhk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Lucie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qbcehnkx5zb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles P Keller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qddv6y9zfnk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller 400M\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qg5wgjwbp902\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St James\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qj7why1b4j68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nanticoke LFG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qlk6rl8f6v12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Street Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qm35vxrdedyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qmjvlc5dsc2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saluda Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qn5hdqdklt5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qpcq9765znbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qrm04y1pmwy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qskyye9wpg1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fulton (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qw70l1b24h6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tilton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qwfp8we9smb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vista Grande HS at Casa Grande\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qxjlj7nf7wyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 250, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8qxp78pw5vlkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r0keh5vbylyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hadley Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r0qh3xjkgzw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hyperion Treatment Plant CHP Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r1xefjpd9kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles D. Lamb Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r3xxehbflm3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richard Burdette Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r69dr9cyd4g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chuck Lenzie Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r6dbcjtxwwnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawnee (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r6vn7l8vcl8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silver Lake (VT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8r8g92j6d59vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rb8l065bxgg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warrior Ridge Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rcsgv5bk0nrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sky Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rdejdvlcklv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Alamos PV Site\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rdmbpklmqd53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stanford Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rj5tnt4qveqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilber\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rkgeql58ygxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chattanooga Metropolitan Airport Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rlzjrnbpt4j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Susquehanna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rm9sffs2p9t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schofield Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rq2npm95nehd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Fork\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rrpxbn4ywheg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wadesboro Farm 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rrz9n1pq0eg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IRE Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rtlv8kpy2dfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rv45fv1gbmm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rw6krnydwcy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Utah Red Hills Renewable Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rw6t93r17pw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hydro Kennebec Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rwvf3yqxd8h6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LSP-Whitewater LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rx2w1c1ectqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rz76414dlz01\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Main Street (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8rzhe4eje9shf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optim Energy Altura Cogen LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s1qky2dn3rk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurel Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s3ewmlbvkm69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pima Community College - East Campus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s4zcwrx9l21f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lonesome Creek Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s90m0ehfpflb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seabrook Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s98vytr13052\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Playa Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s9lckqgpbjx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodhull Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s9pbjnx5n607\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylors Falls CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8s9pk7k49pqv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geo East Mesa II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sb87wjxmfdzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martins Creek LLC Williamsport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8se7kx2dn1xjg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milam Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sfcy1nqnxznh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaw Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sgnpw4ryy8wh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Water Treatment Plant Generators\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sj0teb4v10p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bliss\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sjwel7t35117\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Priest Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sl16vnc5qm8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sm8qh8z4nev9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cannelton Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8snmjwhqxvp79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trail Ridge Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sqtnw60qlkth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenwood (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ss1qnltmhcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skagway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sv21xlzt9wv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sxhf5sxblps9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8sz1cv2h1rjm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lundgren Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t19n7k2f91rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t2088lbvx2db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bank of America Plaza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t2xwy0hbme4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ArcelorMittal Burns Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t6lgfh6hww14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Germany Community Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t7zxf4pnf7v2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beulaville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t86xd61w8gg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denver Braswell PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t8rqkl9ghj45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alice Falls Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8t9dfg5khsh2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Island Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tc7mnl1e314\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Devon Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tdfex50rcgm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rumford Falls Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tedk0fqdchff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Diesel Generation Unit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tf0vxxnfnng2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8thc3rjx5nn32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Detroit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tjc6n5vh9p52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McPherson 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tm62ml6kd59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Faraday\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tnpn4pg0j76h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valencia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tpbtjcb8f253\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8tw993rcvxrqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noble Hill Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8twfc89w041nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock Panama City Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8txpzpqe7pqdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pantex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8txy7srs48e8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8v0v2tlfg58r4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8v1p3cb78fle9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene Valley Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8v4r2ynkfrqr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8v9phbzv949m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith (VT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vf23c1ylk5tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cowlitz Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vj5xzt3qe7ff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Du Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vmene5eckhz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elkton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vn0kq573z2bb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Island Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vq9rpgsnmflf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sithe Independence Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vqtprcrhhlm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southeast Berrien Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vvxnm0xyc6m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Snake River Wind Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vw4eh3ldm9ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carters\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vwb8mxyjcln2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Nuiqsut Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8vy48xfzhnz83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winyah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w0vj2l2ddpth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aurora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w17endpjzd2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunset Breeze LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w3xqgv1erdth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shepherd Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w4fd9kdzgdnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w4j1m236zlg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CID Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w6t6k91hlr29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Marais\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w778r40xpx56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dow St Charles Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8w9z2efd95dec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indianola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8webmg7bket9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayou Cove Peaking Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wfvwrv1pmqxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minco Wind III, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8whb9m0ve3yqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agua Fria\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8why8v7598xqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Town of Rocky Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wn5p98hhwqsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond NMCA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wpd55vx6w5q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Street Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wqjw8ty4gl2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenneth C Coleman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wsmxq8b4rjg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Middle Peninsula LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wyz3qtnznksg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8wzg874ym81c4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8x1q4nnmdnqgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albertville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8x3r77xwcrn42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8x7dcevwlgywf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kemper County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8x8jb481x2xs6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Bend Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xdplxgj4b6ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lagoon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xe89f37r7mc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bluegrass Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xf46m4dfpml7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Encogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xj54pmc0r089\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snowbird Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xkmbl8r23tmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls Village\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xl913j8jf0l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sampson County Disposal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xnksyyxv1rjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vandolah Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xr6wzpn60vp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stetson Wind I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xs8zk3csf2c2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bobcat Bluff Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xwkh31mkl3w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dam No. 4 Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xxv43twnf8s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xyh2x7cs1jl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Herbert A Wagner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8xzq7r757srz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Murray Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8y2evm44lj0e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pendleton County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8y5fvzwgb87yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danbury Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8y7p5nb0fezf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rantoul\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8y7zs9w3f2kzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pit 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8y9dlx1466z25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pea Ridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8y9x0clgxsgy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yb13evqwvz76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ydev2hwvxkz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ye02njps8g3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Eco Vista LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yfs76s26txc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Story City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yg4qvn8ewf3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hardee Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yhrs32tb4fy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yjl39xpq2sh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yjlbgfv6p041\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Water Treatment 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ykrve6896xe8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ypc9rfh3k1x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenkiller Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ypnfs7kx0bc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yqqjycx0rbrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco San Joaquin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yrw70pevjkj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgewater Dairy Anaerobic Digester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ys5bcw6n3p3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Pulaski Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ysk56yxz8mbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mustang Hills LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yv1jvc0ymlk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manitowoc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yv1qmhyr72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moselle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ywhv9hcnq182\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GSG LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yy900m0vt1x1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FLEX Gibraltar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yylwqg042x3b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Fond Du Lac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8yz1d8p1qe2vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z15hgve00gq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peetz Table Wind Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z56y56m7bpv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ajax Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z6y7h3qq9png\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William F Matson Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z7b24xjw03bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meridian\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z8gvtnnjqnzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holcombe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z8kyng5se6e\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 3032 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8z8v84dgd42k5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomas A Smith Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zbj3r9dxtwgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zd8lv3c0fzpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zdsq8m4btcs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Packaging of America Tomahawk Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zdwlnd53qzc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dairyland WTE Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zejkr0q373x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahului\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zfstf4dsl8f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maquoketa 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zkw0ss1rq6h3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sylvan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zldp0m4x8v38\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watchtower Educational Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zmh7ctlkbsc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8znfcmgcjzmq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bolthouse S&P and Rowen Farms Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8znyw1bprj8x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Piedmont LFGTE Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zpqx8kmfvetc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zser0xr3ynr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowerman Power LFG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8ztvsbkj9v998\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hancock Creek Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zygzpdn1e979\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney A Murray Jr Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/8zz48mlywgg29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Engelhard Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/900qnt2rdb326\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Beth Israel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/900t06cvb6sb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Hills Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/901d9qxkh2f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Valley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90392hvw4drg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Olive Farm 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/903m2c6pt8m5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeze Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/904ctrhsfcynb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Byllesby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/907cwv0vrk2w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swampy Acres\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/907v0337phm62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huerfano River Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90btmsq3x3xqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 1 Orange County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90ctgj62exnh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boatlock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90cwpgrh4fh45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbus Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90d8xfmqpv537\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arbuckle Mountain Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90fdpbnywyymf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Lure\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90jdmh3ges3jb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterling\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90jgv9763p694\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Uwharrie Mountain Renewable\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90lzfdpytl8n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stanislaus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90m4sgn8gxvn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Corp - Nekoosa Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90mf0ggt4sdvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cowlitz Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90nv35pn8d747\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enerparc CA1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90nvr5z9v77k8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles P Keller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90p0t8swggct1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rowan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90scp5ls94gq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Electric Avenue Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90stddzk1eb22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henry County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90v78gn0g0cm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redwood Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90w5hmekqlws5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90wd47d6f9e0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manistique\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/90y94d97sj9b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"VMEA Peaking Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9122y4rc4xss5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ahoskie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/913nf9csemdnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marble Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/913xx66090n0c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fermi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9177pezcxj4dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartwell Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/917hjt9qb7bg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick County Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/919j0fmcjt4b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakewood Cheddar School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91b6g95ej053d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91dnrnqek45hf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Star Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91dzkx688k3y\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bulls Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91gmng154zh96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dow St Charles Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91h96646j53r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91j3y48bhc572\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crawfordsville Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91p1xlvbtz1g7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91p56n77twrt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rowan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91p6c638pr9fb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Babylon Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91qjn2tc39rbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91r206pxhhseb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jersey Valley Geothermal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91r5n1xe4tdb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tucannon River Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91rch3n590gb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kalamazoo River Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91ryrhfr6qb1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brooklyn Navy Yard Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91vge329z5tpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acton Solar Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91vtdgrl7hwdf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millers Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91ygfxj8h77n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/91z9dt8r5swl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gratiot County Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/923n0d789d0l4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelby, NC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/924lsbb8vvbdb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Doyle Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/927243rh547e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Valley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9276t76353fg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Liberty Electric Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/927jr3q1bylt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Howard F Curren Advncd Wastewater Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/928bg2ee5m25f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharon Spring\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/928j4ernqhp93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covel Gardens Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92bl4x89gcjm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Edwards Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92clcsk1h2f53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newark Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92cr4wz9xsql7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flora Site A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92dkel3n34647\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92dz077vzm247\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilkes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92e0kkjttwy42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paia Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92edrtbyz1326\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92engy50msrc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryan (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92eqpkkm30q6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skagway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92fv7zhmk1d93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hydro III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92jesjcsp6wlf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Memphis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92jljl7zt7y8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgeview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92jyjh00xq465\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #28\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92k28zt29sk8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syncarpha Palmer, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92ky2tvfnx0nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #02\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92p217jtp3jrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brasfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92pdsrxp19902\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Headwaters Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92pjt06qx7ym2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterside Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92pmx5ejb3ne4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E C Gaston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92rgznyh0dec7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mascoma Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92rwy20k2c1g5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92tehykgngmcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Memphis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92v6g03the8ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Luverne Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92vvhy5c1nrnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NAEA Lakewood LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/92yxq0w34qr0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Main Street (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/930ydw6rjqtp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roadrunner I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9319mlqwfs9hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Hartford Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/931l2bmexfhx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hardscrabble Wind Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/931v5tbq5sc6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/932se0veq2n8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NAEA Lakewood LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93800sk2xczfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethpage Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93b8xcgn8qbrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kivalina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93bjz07j8nnq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor J Daniel Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93c2m9xt4x077\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Acres Solar Facility 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93e8g7f4kqg24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westervelt Moundville Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93h0zex29czg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Community Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93j0g980833r6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SDS Lumber Gorge Energy Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93kf42gygmk4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley Center 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93lb535ryb28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93nkyrhzx3hqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zimmerman Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93nsyymnzpk72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93rpchj13fmn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/93whsjk3kk2vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sylvan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/940806zekgkl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conejos 1 Community Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/940xwqc9xgjnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JBER Landfill Gas Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/940z2h6ccezhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Breese\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9412n50qcjpqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wylie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/941ljnzj45wm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/942wx62wcdyhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toledo Ref Power Recovery Train\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9430ebs5x67w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nueces Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/943ynjsh5nvt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timber Creek HS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9449me2e767pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/944tnv95nxxxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gillette SBMC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/947qvc88e9868\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitakers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/948e8k6js3qv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gas Utilization Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/949n3b8rlhwh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pheasant Run Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94cflqg8209y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Wilson Sundt Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94e0qbch2jfd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"USS Kasch Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94f2jbv8meh42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springerville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94fch1wt86e04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94g9t7ps80ed6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94gks3jtlxjtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94jcln9zln37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRE Marshan Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94p31661ktfw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montgomery County Oaks LFGE Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94qcdp85bjghh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wayne IC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94qfyg88849w\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Electron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94qrg0mh63pef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galactic Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94t84mbqx5zt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ONeill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94tgb1sseccfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Bank of New York\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94v8sbmmp76ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norway (IN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94vnnnrg4pkjg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Remington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94yzy1gvfm9k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fore River Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94ze7ss15vn82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/94zmd93gp57ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls - Croghan NY\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/955g4zl1zcsh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indianola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/955jx5q9f99kd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Framingham State University Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/955zptwgjgenb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Creek I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/957w5chqhr4h8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Napoleon Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9599nzp8qdn2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stony Brook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95b8xb51ntcv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm Street Substation Generators\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95dw1j01lbmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gas Utilization Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95e6ks2fww9z\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Reventure Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95f11sv8pgb26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Celina Solar Project #1, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95fd881h3dm45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"August Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95gwd8fsmccfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Rolling Meadows LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95hdd4wnfv8ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Hawk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95hrrntq6zj6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95hxnz49er3jd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oregon Trail Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95j90qctyb5h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gavilan District College Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95jkp6lrmb45f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chippewa Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95kmp6ndztgsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monmouth Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95kw80rrmc27b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peoples Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95mcbh7mrqk6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Falls (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95meh2hsnyze3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95mv5v6nxh8h6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoisington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95ny0qj8fl198\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soda Lake Geothermal No I II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95r20blp2fwbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crisfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95skl7te8wqd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Salmon A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95ss71xrj55yg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95t4v0wg33hyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Electric Avenue Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95te4g4k33kt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grandfather Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95wk27wtqlks2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Byllesby 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95x33gnvbsrvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pennsauken Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/95zg4m08hlvv1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redcrest Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/962ly8yzgm4d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/965wwlg1wlnlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Lake Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9664g873btpq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pilot Knob\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/966wze5dp1f53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Rips\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9699sgl4knl77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE EPE2 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/969mnrf20wvjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L-8 Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96bz8n2yfhn75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96e4cb0pms7w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carver Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96eky01nveep7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NY - Presbyt. Hospital - 525 E 68TH St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96h5c7mfdc63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indian Orchard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96jtld3l3rbr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Empire Generating Co LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96m5hcdgp6v8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96me13w79gxv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96mwfck09yp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crater Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96p0clh6mlp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wellesley College Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96s76nep2qnef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mile 28 Water Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96sc18m10f83g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RED-Rochester, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96ssbydljt4yd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fennimore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96stg1zq1szk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96ve0kkxglyzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/96zwzbc8lxkwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Ferris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/970gfwwphbpg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parnassus Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9740ny638ynfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcadia Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/974p6t5ye25z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ripon Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/976dqfy3h6qfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skagway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97799f5n8cd13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Jacinto County Peaking Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/977jxqnmrb6y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lagoon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/977sy3e3f7941\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berrien Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/977z9z0ctqr52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/979bzjxe6w37h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnson Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/979ebr4y1bvhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hardy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/979gjh62s7ev9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York Presbyterian Hospital-168th St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/979he9lgh45b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Inks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97b1s90j7bly5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jordanelle Dam Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97c3yjpjm329d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highland Wind Project (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97e3q5gb0jqmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Cajun 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97f6nz30m8fk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar - Woodland Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97ggzxphbeww\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hollow Dam Power Partnership\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97mxgqnhkcc39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Tennessee Steam Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97p7hyhzv7mc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saluda Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97p9e5de8v4w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montpelier Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97phnr2yqyxm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Hollywood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97pvtfj03716d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewiston Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97q7vgg8hyl31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Oklahoma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97rcdeqj60q0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97rtb62c5tgb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Haven Solar RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97s3yxe5p4bt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Birch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97sskzw2j0w99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knife Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/97wgfw12zxjkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9817efrny2ptd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9872p8f1mspz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Miller Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/987v9e7jm3we6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Methane Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9881xrjfxbje1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J T Deely\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/989td0lfxc8s6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E F Barrett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98cgxk8wxbmn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walt Disney World Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98cnxh02x5b96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Old Midville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98esgwcfwm7md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CB Bladen Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98k801m8qdgmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98m0htzvg4qr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Benthall Bridge PV 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98n7gl3jq8cf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BC Landfill Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98vblwp05bf86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blewett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98xhlxmwn86sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Valley LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/98yyy3dx0z3x4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (IN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/991b43sdfvyb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9926lwwkcccd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palmer Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99292j0kwmpl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southern Minnesota Beet Sugar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/992x92wbdqhtb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/993mged18l2yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/993wclw5scf23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gainesville Renewable Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/993ypcrl3vncb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barone CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99503b9drn9k8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/995tyhvteqlt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation California Training Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99c9lxd42x4rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99l8gr7c1syb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99nbd8dtlzy81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holland Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99nmn58y9jdyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99pns2rj85m99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gilliam South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99q7scps7796\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CED Westfield Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99q8mw3besdd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caterpillar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99qhy6j0tmzr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apache Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99qnzf2h3ecg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Childrens Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99smw14c51cc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chalk Point LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99srrznzcmexg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dardanelle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99t9h7sp5njcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hampton Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/99v3x2kqjp405\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jordan Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b0qlsf89dtb7\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOZ4YAQAAAP//AQAA//8ApRyhUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [14] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Coalinga 25D Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b1fzrbx28fn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ubly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b2mmwrs3710d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b2zyzctpsyg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Leaf Solar XXI (CSG)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b3rzb6njh3m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fulton (AR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b5xdx353cvy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thompson Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b62ngce0f1nf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b69f5x94zzxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bison I Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b9b66sx89xth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Call Farms 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b9h1bj6xy466\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Community Wind South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9b9q2pnjye1dc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haworth Water Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bctw8dc7eyv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tropico Solar PV Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bd6cys6fz9r4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Three Mile Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9be7n12rsl432\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gap Pacific Distribution Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bembm1pqxk88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bgf1jg54hn84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Medanos Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bgyqlgjh6kt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Viking Energy of McBain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bh37x1bw2fn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Falls (WA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bkpvs8c67ts1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springfield (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9blfdr8m73kg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethpage Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bn9qegvp79g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miami Dade County Resource Recovery Fac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9br8w9lpkjzy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medicine Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bryp05ndhx77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bs8dw41s9d1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clifton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bsdbtmqqq2c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delta Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bsr25tj70ng6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bsvbs2fqelnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LAC Courte Oreilles Hydroelect\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bt4qtn9916jf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"General Motors Corp at White Marsh MD\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bwxqzm6g5m77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DeCordova Steam Electric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9bxk5hy2bde8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite Falls 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9byr37p6h4kr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shiloh I Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9c3x5e87lqph9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9c5gsbgg6zxp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deertrack Park Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9c61cwthjrtq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hawaii Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9c7z0vshgr6n5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cc54nmkjyxt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cc9y9hsr0qwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montgomery Creek Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ccc4dhm3h1e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bond Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cd642g51mkp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweeny Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cdkk9g84zjhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Picture Rocks Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9chdxd0jm6jy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Livingston Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ck4xhv3vrctd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Pines 1 Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ckl97b3dc9x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peak Power 1 Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cknz30zkvhn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sappi Cloquet Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cmznj261223\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cpld5spvje2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Klondike Windpower II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cs6zn24hmyn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9csss7s61xsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shoreham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cv3ykm3cz0v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Bank of New York\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cvqkkg6bbl1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #42\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cvspglm5mmsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pennsauken Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cx5kjwstvcx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cysd90czmev2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Run Windpower LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9cztz4px7md74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbus MS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9d0dxks8jtsxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Peru Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9d0rzg96vtfs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shoreham Solar Commons\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9d2zc383y1q5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adobe San Jose\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9d3z9lz3bvw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SCE&G Springfield CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9d76kkp28vzn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Regional Wastewater Control Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ddxb7br2gk77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEPV Palmdale East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9debf6le0cz66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9301 Prairie Farms\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9del759w71908\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management King George LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9deplwnt85vl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moline\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dg0fn8hll7s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaston II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dkxhl4cp0zec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McManus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dl2pg2klx9f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yakutat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dl7tsm9l5bq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Diego State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dld6x2nyj7j2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Poplar Bluff Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dm8ndxd1j2z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mariposa Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ds1rh6mk97j4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R S Nelson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dvkgp99hykf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R W Miller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dw4rjvern3qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9dz12whqb4dk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Progress Manis I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e2cknj7j7fg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Creswell Alligood Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e2h13gw6g6z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hallam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e2x37zv7cxe4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bandera Electric Coop PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e3m4x5xgje44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopkins Ridge Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e40zgmwpe9f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chilhowee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e5wek39gdw4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oregon Clean Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e8yym4rnbdt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sudbury Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e9m6wfvjc1gf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thunderegg Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9e9xpwemfp7vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ec1hz3syvw78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Market Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ecpyh0t5kz13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9eft1wz195176\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ejbf3f7f40cd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salton Sea Power Gen Co - Unit 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ejbjrs9g0387\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Enfield Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9elg4y5n68497\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martins Creek LLC Harwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9epr5dbrsrsm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marina Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9eqkghjhyhxl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9eqz8gtgwcqc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LaO Energy Systems\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9erg2n760syd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blenheim Gilboa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9err1yjbp7hc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rollins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9et3z8s8p6k47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flint River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ew5f46c075t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE McKenzie 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ewgg4n2370s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Two Mile Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ewmvrp6hhqtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grant Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ex1kyg9kr6rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Philpott Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f1c0flbffzr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethlehem - East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f1qbs9myxpnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cape Cod Air Force Station - 6 SWS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f1qc2375cwmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Brookfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f4wjl9ee9s06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Robert Massengale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f5jm1d19hsfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Creston Ridge II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f5nwq7w37467\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foster\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9f9q4brwdvwhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fd7entbvger1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hyder Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fej4jm3dw719\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anderson Power Products Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fepkr0sg31c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coso Finance Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fgmzvmnlp6e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottage Grove CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fhkf5wp59jrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Antonio Regional Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fhx29ygj83v6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Diego State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fkd4sq0cc486\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"P Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fkm5grbs3bz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fl940qppbtbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"1420 Coil Av #C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9flxbr90mj7nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seabrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fq4gbr9q6wth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlanta Falcons Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fqt23dws8kyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auburn LFG Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9frxf1nn9l7g4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Amwell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fs80djcwqgwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spencer Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9fxxjxejgqyq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alamogordo Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g014w4drr476\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raccoon Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g0c48p7r9fhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beldens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g20xhmsm1867\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Venable Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g2yzjksvv4g1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sycamore (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g401tmf9c9n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Camelot LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g5ybjrs4slgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxnard Wastewater Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g7mx10ej6yhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lancaster WAD B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9g9gbfjz63b27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gbdcztyc72m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilder\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gbgx67yb23s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gebr0k7w82ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Esteros Critical Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gel9yrr2pd73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Nuiqsut Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gg3ybdyr36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castle Rock Vineyards\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gg90me66b2g3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Griffith Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ghbzkdmtk2r5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ghvrw9xdhzb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martinsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gl9k5l1x57bb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9glh970rln041\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Capella Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gm9x7hdlxj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Garland A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gnkcm89gl7w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockport Energy Associates LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9grczqj00epk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt.Sinai-St.Lukes Roosevelt Hosp. Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9grej5vkw1szb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Loop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gssr2rkeqp1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Murray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gsv9l03qwrb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gvcctgk9p70f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Carolina Solar Bethea I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gvz4dv846mwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minnesota Breeze LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9gyq54wvy50q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadalbin-Perth Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h0yt1209t2f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coralville GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h2ltlpv8g2f9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Forest Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h2srcx1vbw8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederic Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h48f2z0cm7p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Munnsville Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h56nntt42x8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wanapum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h5v7bxth0r6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allendorf\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h7yyd6x41bsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Samarcand Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h8148h1nml1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Bluff Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9h8ltpld44p7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glennallen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hb1jnxb7fgn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hc5h8kvk9hw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Painesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hfd587z4d3e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairhaven C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hgjgcmny450b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSL Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hj0q7ppy76j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leominster (MA)-South Street-R&D\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hjq12yvk9l41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buxton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hmm5b6mrxvt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Audrain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hq73wp5ks9kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mead Coated Board\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9htwms14ykpn5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEGS VI\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9htzr6nl8s4xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Wainwright Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hvr9363nl1ef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Riegelwood Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hy48mlnkq6r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beluga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9hyjzzk9tzb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitney\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9j4r0z062kns4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bradley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9j85v6lbh4nh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Angeles Refinery Wilmington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jb4dlesqx6db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coastal Plains\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jep8q0we10wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elim\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jmetc3cj4cth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jq8t0cykzs03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salty Dog I LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jqf2lj326kk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fermi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jsd31wj95m35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jsndj39gx554\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Michigan Solar Gardens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jvbt9sghs9t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ayers Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jvn73k7z5tv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jze9vp1w2mnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Short Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9jzt1zvcs7vw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drop 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9k0nwky32r9d2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #28\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9k0t8ffkxb2rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saluda Solar II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9k28e043dz9m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Crosse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9k3k8t45tm87b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Humboldt Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9k43n2febgftc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rotor Clip\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9k9qkbt1460e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEGS V\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kb3s0cttf1b4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osceola (FL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kb8vzzn1x9l3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kf143gpq8zmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillingham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9khdrnzgshhtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nicolis Solar PV Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9khlm8t8ch88h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indian Valley Dam Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kwpnmkf3cr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T H Wharton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kwxzrje8g817\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Jefferson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kx3e640sx0r1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minnesota River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kxhfpkpl6cw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingsbrook Jewish Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9kz7dx40svdq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l0wzs9gsnskg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gerald Gentleman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l22e9ym6vt96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wamego\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l44r8z3r7zb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boott Hydropower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l44v98z2x3n7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JM Shafer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l4clm3m4q0k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jameson Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l4qhbd68fzc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eclipse Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l5h6h8chyv69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saluda Lexington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9l79ejey0lfm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lb6wrf9c9w2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lblp7lzh7qx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E.B. Eddy Paper Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ldgnh7d216lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunEdison Procter & Gamble Oxnard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lf283xy4q62g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aries Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lh1m4280vry8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Standby Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lh70spjky1w2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taum Sauk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lkvrxejce6l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paragould Reciprocating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lmgbb292e17f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Proctor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lnjnsm7btbzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stafford MS Ground Mount Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lpbzxrkpkyy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hidalgo Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lq1k7yr65vsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southampton Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lrgx7vb9cynf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saguaro Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lrzger65tm26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lvp3fkqwf34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Centro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lwjvbpv4fxe4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gateway Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lxp6fmbh32v9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kearsarge Granby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ly8jd2brfz8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lucky Peak Power Plant Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9lz2f24nw9nbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deertrack Park Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9m03ps48691rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hog Bayou Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9m288xtvch61b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watertown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9m38y3eg3p7jd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeastern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9m74j6fmdk76c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Mount Bethel Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9m9s2g194etn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountainview Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mbk6j3nq20x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells IC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mbn50ezzdr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9me70g19z0951\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windwalkers LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mfcs2wxcsssf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stiles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mft0x230c648\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mg6zqdfh1e0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oliver Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mgbjb07c0zld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Pecos Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mh1b8838dhxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mh4bmc6ek3z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grayson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mhrqg5kdhsfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pixelle Specialty Solutions LLC - Chillicothe Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mjcvytpt30qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pratt 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mmz2tndtnpe\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ms2xe6prxyk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lyonsdale Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9msyb3fzggqzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mtpvx1v2n0sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Verwey-Hanford Dairy Digester #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mtpxl2g0jq68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mvrvk0wjzef3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9mwjw6172259b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9my6fvx463n6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potrero Hills Energy Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9my9p6l5143e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kleber\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9myfvmhhbmsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Celanese Acetate LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9n0tcj7109y46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BJ Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9n1q1nzkk31l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paradise Valley H.S. PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9n357s132mb29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Rita Jail\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9n4g1qyl7f363\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushman 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9n73r438bhwz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgantown Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9n7ebg33r72q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Transamerica Pyramid\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nbkpp9r540vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Stafford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ncp7ndv6c65f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Star Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nendnxpbww1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Millinocket Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nfz2qf1e8w74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frontier Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9njdwp2tddj7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nl74xpgfmbxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nngxvfvbwtvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zion Landfill Gas to Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nnw9861gv9kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9npfy939zbmt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notus Wind 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nr3zersbvsz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Doyle Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9nv1q3ktl9j88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mother Ann Lee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ny94lzw0s2b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Baker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p164sq70yjqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Girard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p1w7rgktdsq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Arthur Steam Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p2jyk9gxke0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Escanaba Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p36dqrhfyzgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Jay Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p3krlzh07sgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McDonald Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p484pf6sgx0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comer Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p4lqvmk2j3q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black River Hydro Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9p6s0rb4qbegg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Androscoggin Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pbs3v9b1gbk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pcfldmjl8wf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Klamath Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pdxsrpljdsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hays Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pf4xve1yhll\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chester Power Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pkd09lr0jlp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cow Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pmb85ys6stmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ozarks Natural Energy Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ppln3v6rd6x5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emery Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9prdf2hntslb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oconto Falls Upper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9prmlyfg4tj39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9prrsrw0nvxv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAF Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pspkgv429rnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gadsby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pst1j45v1pj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I25 Battery Storage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pt502bt84ngb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pw1vr4etddqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"P L Bartow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pw6lhf4jrrbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Sevier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pwv2bx8x3mr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweetwater Wind 2 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9pzm650sm523\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Myers Squibb Lawrenceville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9q22z28tvx26h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rolling Thunder Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9q4cpryfbxbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9q5evc99fj5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pedricktown Cogeneration Company LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9q6tdzhkzfvd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altamont Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9q7yd1qfrtsrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C D McIntosh Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9q7zry67n9lr1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell Downtown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qdwhv7t98vxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ayers Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qfkdftffydmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whirlwind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qfpq3s3p5005\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snoqualmie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qgwy0c8k9114\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kilroy Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qhjz4jkr51eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aqua Ingrams Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qje4eytvged\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CJ Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qmfhj5hjl6wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qn1wnh7z5t18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otay Landfill Gas, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qp5nt3npr8l8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tesoro Kenai Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qplbd2ms55e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Denver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qv04eb59qeth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CPV Valley Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qv0kx3w0mw04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danville New Design Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qw40hpjybq22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windpark Unlimited 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qxsnt2l0dfmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ogdensburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qyx0k2q55r23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qzb2kf8xthkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deshler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9qzpe1h0ckxe\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Ida Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9r5clcqm4fmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Crosse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9r7b1gyxwbq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Packaging of America Tomahawk Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9r7t3wcw6g3m5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Violet Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rbth3fm5tdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broome County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rfp5zg3qnys8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cutrale Citrus Juices USA I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rg58zhw34985\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Corinth Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rgrlp61yz4kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Doreen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rgvskjws2fv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Indianapolis Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rht090yv08l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Animas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rjqffgh44tb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harquahala Generating Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rn35ygmy6kvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton Energy Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rtq50x986skd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls - Croghan NY\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rtx18smqh3df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Washington Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rv4bzdzg65y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rx0cc3h0yn35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Mac Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rxy63c9dgby8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cabinet Gorge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9rzm02v3x1q1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean State Power II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9s073hn65dzb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9s43pgv9bsfr1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Bridges LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9s4vmgsnn74t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Huerfano River Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9s6wywbnj7h1h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sc9j79d6wfv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montpelier Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sccqy4n8yql6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MMWAC Resource Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sdnztswptsq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomson Reuters Data Center Bldg H\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9se8nng6s8b44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Acres Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sek62vts8q5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covel Gardens Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sf612m5pc9g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffin Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sh18krwe8nz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mustang Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9skqxl2pmbq59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sldzlxmcxyk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gopher CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9slp5sk6nrfrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fitchburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sltx853kbxbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE- E Philadelphia Ontario\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9sm1l6jqnkd15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabine River Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9smz2qthe4nlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McClellan (AR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9spfjz0z9re62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t1cd0nhndl3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snowden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t1f42f0rk8ff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Essex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t1xp2gxfsv48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Autumn Hills LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t34cfmh2l837\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BearPond Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t3ds0bjgh6n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coolidge Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t4gt9mez03d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t50x38kbeml8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t5bmfpv663nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweatt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t77zbhbsw1zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St John\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9t8qxv98kn591\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snettisham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tbcfv25w1x3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tbmq97kr5jpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decatur-Morgan Co LFG Recovery Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tbp4ecyp2tmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cayuga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tbw39ks4v1lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 55 S. Market Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tcfw7hys7sgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tewncb9ddgpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ralph Green\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tfw8mtdgd8g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St James\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tjy2tzwf5egd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coleman PH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tmkkznly7mx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winegar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tn454s4crmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vaca Dixon Battery Storage System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tngrjptg51s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chickamauga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tp19btgsmnmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Devil Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9tt5xvsx6znm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ttmr7zpqhemd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaheka Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9txe4efrsjq57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky River (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9txzfb41ltrg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taconite Harbor Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9v0cqknqg1zvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9v22vwele1clg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgetop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9v2q4v9smjvl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay Front\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9v6f0q2hn02q1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kleber\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9v6wkh9x0sct8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greens Bayou\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9v6wrlcbrn5d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otter Creek Ethanol Poet - Ashton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vb322pr0phec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vbmsgkw5wlc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport McMoRan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vc33q94mpevh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Farge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vdrw89shdpdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Gardner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ved8d88bn7z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waimea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vf34t350lgv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Myers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vfdss0kby745\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beloit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vfv86b4c4yl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Brewton Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vgcgm5j8p4n\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pamlico Partners Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vjpnnvrdh7w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tracy Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vkrh7tpnyn56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Creek 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vlqmdx6gm7k4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vm1g325lg16c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sithe Independence Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vn90hndz6kb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horry Land Fill Gas Site\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vp4zlnzs57f5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rochester 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vqmn6lc1cv3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freestone Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vryx0l3zmgy4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bassett Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vs13fwz9j8p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G G Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vtbfcdeyprs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vwptkkch378\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEGS IX\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vx8df9hj2ht4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bushnell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vxemkx4w3mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Luning Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vyqkpsx9k1e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Priest Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9vzdl5q7lztdb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H B Robinson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w0pzzhxnj406\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunrise Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w26pffjb794h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffin Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w2py4hjfnbp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Detour\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w56dd3wdllrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w69tvh3wv73f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Civic Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w8259hgspdrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calipatria Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9w8mfgqxx4jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wbw56pj7vdjg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wdwe5sqtvvef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Road Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wdwq9f6r6hsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis H Stanton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wgmqc6wdjp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soda Lake Geothermal No I II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9whdrzex02z58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cove Point LNG Terminal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9whsh6np0rvnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrence Hydroelectric Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wkchbt9yl5wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amazon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wlm7frlvfns2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sonoco Products Co\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wlz1k03y4xbb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (NC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wp9wtk43e5l8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brookfield Power Glen Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wqgqxzxwmj52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dart Container Corp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wrw5tzj8tjn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert S Kerr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ws324vvf4ry3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Venice Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wtbt9egj0vl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Gate Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wwfgzvf2cbq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Guntersville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9wyb64wfrf3p4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9x0820mmtjnvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Back River Waste Water Treatment\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9x3wcgcf3f0k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Randall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9x9nb5rfxd43c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warm Springs Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xd1g79qehec3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wakefield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xd9clk7q752d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marine Corps Logistics Base Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xe949w5xzny6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xesh9r596m33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barkley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xf1c28rryz17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Owens Corning Headquarters\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xl26c7fydlh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Allen Franklin Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xn6ymnnw3gwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xp7y7pzy1q18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9xpevnen494s8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Macksburg Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y1r1e29mqz18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamoni Municipal Utilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y28mrrcrgjdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y2eytkxlfm96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W H Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y2mertlkm0d6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Mountain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y31dzxsl4ts4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nebraska City # 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y3p7tbv718y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Seat Renewable Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y6w6j0j3t423\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valdosta Water Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y7jw6lf2y951\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcelormittal Cleveland Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y7x1jdtyyq11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y8hkmlkhwmx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muscatine Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9y8qrhvjg28x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ydr5lpxypgqb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roseville Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ygndd9kb0mj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ylbgg7r1b50d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Escalante\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9yp8gcz3lyj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keechi Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ys4t685rserd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverbay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ytl74jslhgeb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metcalf Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9ywjcgbgnp9qb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"James H Miller Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9yxt1kh4j7fpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moser Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z0hrb66jlmmg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z255k6w0zmp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Lake Project CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z3pjec7ezmv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freestone Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z72lkbhydj47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eklutna Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z82e483npjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Westward Unit 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z8305jymcbw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gordon Evans Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9z9vwlwp7vgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skelton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zbklj8kg4fvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminole (OK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zcj1yrc40hn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Browns Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zdr3pf4tewd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sudbury Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zjgjzpmjqpsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zjvb9582pbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGinness Hills 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zm7dxrdq0rph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Blackstone (MA) Treasure Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zmd622ynvr91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keswick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zrmdqjb0hv51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rowan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zrxdkvz6xxsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brush Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/9zz0tqf4z87sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b00c9mtkkphw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b01zyv7py9491\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Island Solar Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b02e1mcgy9pyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snake River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b071zj0j9sj7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mariani Packing Vacaville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b07fyws6q0k28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b07xs546j41t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"De Sabla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b09yhvwmjkbjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Limon Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0b1ble3pncwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cymric 36W Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0crjzh2khg6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indiana University of Pennsylvania\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0eeq3dkxlrw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Falls Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0f55ldftdmr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Claude Vandyke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0feyev0hykn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Palo Alto\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0h5jlfzx4dd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tillery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0k41bwd3werb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"2081 Terzian Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0ks99fehqwmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoffer Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0n0fcrjr6whf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jeffers Wind 20 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0nmtkzmlyk71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brule\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0ps7bsd2el51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Savannah River Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0pxclf1zbm5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mink Creek Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0q7yd2c1yytb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garrell Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0rplkk53yb7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mosaic Co Bartow Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0tb39dn996x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay Windpower I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0v2ebby165j8\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOW6YAQAAAP//AQAA///mGILVUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                  
#> [15] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Horse Mesa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0w0x99gfgt3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Lake Water & Power Plant 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0wsp35e5n5ec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peru (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b0zrndkz8sv7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Mesa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b10kl6n4832q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean State Power II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b11hrnqb963q1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b12fwtbh6mm3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamilton Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b12vhxwzp4xs4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TNSG South Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1790lld3h8q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pickwick Landing Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b18bqql0zbmvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b19xpwgwtyvy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I 95 Municipal Landfill Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1f0bdgc7lf06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sierra Pacific Lincoln Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1g9z07yqgqhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rice University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1hdp3gzsym63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Byron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1j1t07x3zxp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Marys\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1jmx7evv9b46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenneth C Coleman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1mcv5ve71xbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belleville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1n14m69r3jdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boseman Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1n1xb7fn0zt6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Macho Springs Power I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1n94p6175s4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Michigan University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1pjkvmv7phg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Good Samaritan Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1rbty3d2bx7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marsh Run Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1rgbr4z9wzf8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soda Lake Geothermal No I II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1tgkqpbsmbrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #13\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1vdz1vlfhnf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orrtanna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1wm2fc796kkh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selawik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1xm68g795bjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Piney\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b1ynk1g7kbbk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harmon DC Totowa NJ\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b22evhqqsek97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nichols\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b24kjjgftcn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roswell Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b26ngellrft83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danskammer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b28zxhvtc7qr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Crystal Sugar Moorhead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b29tvy2sjg339\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b29ty6me1b9p6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Samarcand Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2dgz8jw7wt29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Medical Area Total Energy Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2el9t54c0eb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2eqsrweqectc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Outback Solar At Christmas Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2jje10tnb5p3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springerville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2ldnyembnk87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #27\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2ln8xsdp6jk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Herrings\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2mbvxk74gss2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Newton Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2mqvs4p70b2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherburne County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2n57bq18ngj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk City Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2nww5j1zkhw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rifle Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2pl91e3rwc8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastover Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2x35drgdlvm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galena Electric Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2x6cv8syz6b2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Creek Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b2z9e2yz5tgx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Renaissance Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b31tfkzgqkg92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California Ridge Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b326v04hhmjp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ASTI\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b32zljlgk9xgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b34knfz7fjphc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meade\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b34vgqyc4727\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Expressway Solar C2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b35l40mdwjvlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9302 Aegon NP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b363zjhmtcl98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bedford Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b379cw0fjjmeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paradise Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3drdyrgq80x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxford (NE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3gd5z8zyyjjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cascade Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3gr2fdft5lrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tok\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3j6pvtp0b3j8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West End Dam Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3k1brk7yxprg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croydon CT Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3mfx47ekmngf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk River Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3nh901npbqz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh (AL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3nyeg7vf8ym7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snoqualmie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3p779gwpk0n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3qf3jqt7zjf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trigen St. Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3rgqc5rv9kj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castle Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3s6fcn8qbex1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3y8ny2gzphnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morrow Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b3yeqqn5t2vk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coronus Adelanto West 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b41kkbgrgl9nf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kent Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b47sggzq9sf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peru (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4cbdt7135e98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rapidan Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4ccyx7kp46s7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NCAH Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4eypxztxfysd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadway (IN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4k51j48dw5m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wildcat Point Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4lqgwpsdcpn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nichols\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4lre1j70d454\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naval Submarine Base Kings Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4ly0nc7bkrw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Cedar Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4mztrq25z999\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wahoo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4pqc8mgxbzg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Penacook Lower Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4txtfsywxxn9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I 95 Landfill Phase II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4v528dkr2mfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roxboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4wgys1ml6d59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Bluff Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b4z3npzvwey63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b51pl1802e659\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #16\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b52ftxtkh3k2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harrell's Hill Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b53r5w98jn407\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monument\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b555ye633p0nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEPV 8\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b56bvlrstxz5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lemon Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b571vl6slqqqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Marinette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b57ndeh22c98b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norton Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5b6ymtbqd605\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5chbdr260ssd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYU LANGONE HEALTH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5chbvstftcb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gettysburg Energy & Nutrient Rec Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5dqk7p71rbz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pender\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5edzj1246g24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Randall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5gfmdjp7j868\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Detour\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5gkj5kgkcyj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WWTP Power Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5h12rzmd90g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timberline Trail Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5l94xs24ecx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jordache Enterprises Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5m0gcvc6ljn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Hills/Blackwell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5ntqzsqb9707\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Plant #2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5tn2ts44bneg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pit 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5v3gdv4sds7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Combined Cycle Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5vtdjz7g77eb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Culbreath Bayside Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b5yv56c80h7t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b617vhf1181q5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sweetwater Wind 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b62nqb8c5npn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6441wphcdk1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Wainwright Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b64k68besxp98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deercroft I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b64xe37v4ekf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b65yq3bh52hq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jessica Mills LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b681r00s5k905\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enterprise Products Operating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b68lqtezry991\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DC Water CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6cekgced42h2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minonk Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6clslllwetzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blewett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6e2jzhr1nrbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6ek35bnj6fe8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6evppjfd5wh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sappi Cloquet Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6fndepgqgbq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunbury Generation LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6hfk8g5q9yw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6jprlq3v1yn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hines Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6kry05824zj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maricopa West Solar PV, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6ppb3j4gx3s3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ouachita\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6rldhdq1b8rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Claire Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6vbklb6l3hg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northeast (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6vjpkh77c4s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6vvhs85tcdj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Wind Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6xdb6fk14w85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Island Hydroelectric Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b6z6pszlg7z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glennallen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b77694rkqkzn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia Canal Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b783k2c78jq46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FPL Energy Ashtabula Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b787tlryw5dzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brady Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7c0rzbbmywj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sonoma Central Landfill Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7ftdhyy7tlh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JED Solid Waste Mgmt Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7fzl1tcbqs19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Martins Creek LLC Harwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7llpq3pbj0mc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Arizona - Biosphere 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7pkmlfw81z44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcadia Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7r3k79w9n889\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barney M Davis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7rmsr66wzbtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cox Battery Energy Storage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7rmt1thf31nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7t931pwqhcsh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leland Olds\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7vkf6w6mtsb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Du Sac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7vlvljfhxf7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Side Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7w7rdsye26l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrenceburg Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b7z1g2x415e32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gloucester Community College Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b83q8w3gk3pwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coggon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b85lfdg7hsxyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TVA Southaven Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b86f6eb9l6v22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hagood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b87r9j9dv97b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Four Mile Hydropower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b87xsdjnzmg56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayonne Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8hjz0bhdqtxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HEBT Irvine 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8kqs96kytcd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8nhv514vttg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carlsbad Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8qny62g8k3x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Delaware South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8qwlfs2xznp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8sv9bvs9vm29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Country Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8tgte978f2q5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sacramento Regional County Sanitation PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8thv74r68pc5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Fe Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8v22njxxxwtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Gypsum Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8w90c20b5419\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9403 Aegon DC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8wkt8w691369\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Croix Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8ww6yc53qbx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carpenter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8wzyg9v5e847\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oneida County- DPW\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b8z83y3nhkf55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b913qr71ztkl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hill City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b94z95v4b9gcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b95td5crxn2vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Golden Springs Building C-1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b95z9b90758hf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nellis Solar PV II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b97lbecg95r79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Doswell Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b99thjq2jwpm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scituate Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9b6drvtre3sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morgan Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9c3mzetl4m4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Constantine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9d67tg5tr15g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ravenswood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9ebmqe9cec37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of Massachusetts Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9flcnx06xcm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gila Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9gf1pxvhpflh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nimbus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9gs61dt9hl94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lancaster Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9jbxcnp091k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornillie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9jmevxkgvdx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar - Woodland Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9lknx1gj4rzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John S Rainey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9r2rqtf42f3b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9s2fzk3szje7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Star Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/b9tv0nkxvdl65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caldwell Wastewater Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bb25g1tygr6pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bb4ljm41w5tl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartwell Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bb6flerx68t24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sky Dairy Digester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bb8hbh07vmr73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hot Spring Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bb9tpdvr8g2t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Douglas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbb3n3mzcq9lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paragould Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbbf49rrp04pc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbc8q2slb4mrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Park Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbfvkp58ddqvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Bowling Green\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbgqfy0nhfzlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tannery Island Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbgwzz1nn8qgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Peak Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbh33lskecfjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Uintah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbhvcwv2wwww5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eubank Landfill Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbj33dzc9eh64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UL Advanced Wind Turbine Test Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbjy116ez2w4b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cottage Grove Project CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbldh2lk2jxvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson Abenaki Hydros\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbmbdm8r2tf85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawmut\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbrx5sk1vt4s7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exira\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbt42rxkfynr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Independence Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbvqq1del3dtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Good Samaritan Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbxfbm7djlcrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goldendale Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbxxv18mqwxg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middle Fork Irrigation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbyvp8kvefmd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boulder Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bbzg07y5h82lf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Route 66 Wind Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc0r0k0qgp7pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc5v3399sre77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgewood Providence Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc5w56mrk08x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonnybrooke PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc62mvlb41zsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc6ek28d58764\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc6ev7wz9wxrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc7zqcm89plc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Citizen B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc85sjbbqqfl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PFMG Solar Grossmont Helix LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc9856xll29d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller Industrial Parks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bc9xs3qfvgeec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bccgjgn85hzl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hawthorn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bcdy1q74b2ll4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gramercy Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bce4ds07ebxcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cannelton Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bck62f3efx48b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kent County - Worton Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bcrt96s7veemg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bctmh1mg7lfhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Marys Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bcxbf7fddx107\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yuma Cogeneration Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bcxtzfk3bpwmd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jameson Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bcypmrqx7v07b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxbow (OR)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bczqs8xrnk2yd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Appleton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bd0z15ztctg53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puueo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bd2ekfbk6thx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Temple Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bd3kd2mh55m7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brainerd Public Utilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bd4sqneg8yj73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bd5t0krfmh14d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waverly Municipal Electric North Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bd9wxf6xtt375\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mitchell Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdbf2s4eq6gz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdc7lyz5ftb25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sundance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdcnxwhebx28b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdjd5bx336lp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trail Ridge Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdkjmqpfl02bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sol Orchard El Centro PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdnm8erppymfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spaulding 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdnmfhk1l9ehc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mesquite Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdpxtvr778xy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitney Point Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdxpttpq03s33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camden Resource Recovery Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdxs357e3zcvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waiau\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdylynde9bqv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Hampton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bdz3ff8et1s25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Theodore Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/be32hsl5fn574\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/be642f1zjbgt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/be6m3khbycr97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wrangell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/be6tbxcskd463\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/be96wwke9182h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Markland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/begjn42dv3ey2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orchard Hills Renewable Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/beh3vml6ngmf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/behmf2rzhszg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lordsburg Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/behtsdzv5609f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/beje6tpm04j0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bekrebzfbxyfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ples I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bekw5gcf6jhw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeway Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bekz4q9hnnh7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ben4ll5nrmy05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trenton South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ben9cvwhr58t4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Sterling\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bep8tkjryptp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jones\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bepcfryd9kcr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bes9zetktjmd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Monticello Paper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/besqv27xn6wm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Livingston Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bete0ypg5wkn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/betllyk9ylxt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockwood Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bets5rcxv83g3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 2901 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/beyxweh7qble5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Townsend Paper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf08665evgs58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf2996w85nqf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pyron Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf2nqld63z0y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E B Harris Electric Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf2re498y1tb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schofield Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf78n0xp45djh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #28\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf7cwpwdp6r21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Illinois Abbott Power Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bf8mc47hfsm1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central District Wastewater Treat Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfez5vqbt9qt4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darbytown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfg4tbm3wgnj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wind GEM\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfjn5xzptg7p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merwin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfmvflvhgwpz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Astoria Gas Turbines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfp3t91he151c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYC-HH-New Bellevue Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfswd808q1tl9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fruita\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bftg66y09z507\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lennon Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfv3q8dxrsmpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watts Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfxz97sh4fpc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"School Sisters CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bfz8jgdwvt2t1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sewell Creek Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bg7f8kw2w7s5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles P Keller\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bg7l448y1txm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Esteros Critical Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bg7ncgmyrsemb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert P Mone Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgbjp6wb2x539\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puller Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgbrhhrz26ywh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hillabee Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgcrm3zn4k99h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IOS - ERW9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgeffvd701d28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Savannah River Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgf3z1l7zre6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgjg4yg2sl9z1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgjmbcrxz79lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgn9cwkgpl779\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Edwards Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgnx96z8zv4hf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Androscoggin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgp56lket1q4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Palace Solar Gen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgq2rckf82wbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Hondo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgry6260jbee7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgtg5whxbk3w9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgvz2re1fxqk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bgwpdxydnzff2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gillette SBMC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bh66sm8qfy9t5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack McDonough\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bh69lmfye98p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WED Coventry 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhb2xknz1bs9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arbor Hill Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhcp9r2fkrgqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hampton MN GRE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhdgsp0sf4jx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amistad Dam & Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhef3khr81wb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garnett Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhf5c82xz3rjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhfnmbw1h28r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Stanislaus Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhg80eepjn8c3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snake Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhj8tglw52847\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cope\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhj9x46kltg77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhlyb9nt0j0v4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elkhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhqhd5ple03vc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Grande Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bht050klsb024\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hendricks Regional Health\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhv068v8ltgbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhwk9zssnbhfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhygcngy3k0g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cabot\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhygyr02z9wq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bhz3strj9vxyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CNN Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj0rcwm7ce7l3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Borger Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj1ghzhyw0m68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Galena Electric Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj1lqp2lnf1qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wissota\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj6q3psb4e6e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sugarloaf Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj8c01jycd4d8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lagoon Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj8cyhqxtd6s3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Estes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj8v5wy42d9nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Potrero Hills Energy Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bj9kstc8pym26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuckertown Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjdr8fz1k7s89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kelly Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjg2en8lclbrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Viola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjjvwxp5fmmx1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ellinwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjkbq1szrtyvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabetha Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjl98g23hcgw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Battleboro Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjm29llh4f5h2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BJ's Wholesale Club Inc Dist Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjmjge7medxdb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Domtar - Woodland Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjnxmsjr360rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White River Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjsh6qqb9xrwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notrees Windpower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjthgtpk5vpjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjv5w45vs1rvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CPV Valley Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjwhxb8jg6107\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hilltop Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bjxfxxq874zpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ravenswood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk0n2cfbnrzn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rochester Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk15zxqzhdbhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Main Street (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk20deqym6q34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SMUD at Lawrence\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk5qt3vghzz8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk5qyrysyhz97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Way Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk86bv2d3f8hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oliver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bk93034e375dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Radiance Solar 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkb7f5n59kk8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WasecaSun\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkffzz6mjcc9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newark America Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkgbb2s51m204\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croswell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkhyp6s9rdq89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkm93zycqf8t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bknejmwj75yz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cabot Holyoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bks9kp0m194mf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conception\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bktl8ns9p8kv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkvlv7jhj8z81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edenville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkvvsze083x3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winnetka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkxg0b321rv54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stryker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bkzzse1tqvq05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"A B Brown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bl6z1dbvr1cl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bldt90394pkfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hanging Rock Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/blj5y513zl763\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Myers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/blqt99gpgkxk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boone Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/blsd913bz5sgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Regional Wastewater Control Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/blsstdcyje8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYU LANGONE HEALTH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/blwbp3bs7vveg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dogwood Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/blxfm4d5xwyy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Gooding Main Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bly647ch8me02\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E F Barrett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm0je49gd392h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RPI Fuel Cell LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm0mn8pz8tn54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lorin Industries\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm3yw72c1tbsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manchester Community College East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm5219t7h2f2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yelm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm5s84d1nmlef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadview Energy Prime LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm5sp582e9y12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Dalles\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bm8jhyts4g0zd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Temple SEGF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmb2zplst8kgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northside Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmeffxvwddk8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Petenwell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmetl8613wtgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kirkwood Wind Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmex19hglybdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Western Wind Energy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmf3xf5b5l7tf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairmont-FLS 100\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmflfd4qk0dx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oneta Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmh2skcm929ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Delaware South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmjex9pcc6603\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Cedar Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmjg5lz0x8kg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arnold\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmlp7ef03hwlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Jackson Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmmdthemp45v1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stewarts Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmr830lv3cpp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Shield Envir Old Town Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmtd8nnxeh3s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auburn State Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bmxge61vwtztc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 37\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn23308j07t29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ZV Solar 3, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn4klzqvn2tch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #42\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn5gz6ntvl221\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naval Submarine Base Kings Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn5mtqyzs8b19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Ox Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn7j7gdswqg85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe Livingston Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn9t76xn6hh5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Elk Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bn9yk3m9dxded\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Wachusett Community College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnd996wpkzscg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mariposa Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnej1l01ce461\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gateway Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnjx2gskcj205\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blythe Solar 110, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnkn1pdjq1ln4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grassland 3&4 Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnkx8tcq2e231\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cirrus Wind 1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnr27jks55mhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forney Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnsb1p4qqe52h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bnsexspxq915b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intel - Ocotillo Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bntp0s6n4jeb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Park Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bny6nx3y3c7w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saranac Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp0hqg4llm0cb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswego Falls West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp0y8y1cq9v5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McWilliams\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp1918z3ct5bd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp3z6t6ze3807\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaiser Ontario\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp43zd0x9k7jb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orono B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp6fdn7scr3x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charter Dura-Bar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp6jjh5s6lsyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ramona 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bp8rywx97jw12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ontario LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpbz1s5t02fw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hibbing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpc7n58z12hmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Mobile Bay Onshore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpcbg1rm7n64g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wallenpaupack\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpe1dz1dpehe3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Richmond WWT Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpefcb5kegpsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpkvnd2g6qxz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trigen St. Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpl48ndew23nc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bppk11dngd9r6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waddell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpqkw35lg9xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dynegy Moss Landing Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpr1h06dl2wg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maddox\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpr3h2lcwt0vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Elbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bprc3ebqsjc44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Two Dot Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpvfj8fvjmpyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blacksand Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpycfpn3jvp63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaukauna City Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpyzswtwy2vm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean State Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bpz3vsnl98hhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Du Sac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq2efqvwyxtgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DSM Pharmaceuticals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq4pkg3fnj5m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq5cndwxb0828\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomas C Ferguson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq6e4qq51tfm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jay County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq6sqlt62wewf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kent Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq7gwzt6rzk6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bq9p65d0kphf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westside Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqcfsz08mgx61\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Don Pedro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqd2t2s72heg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belchertown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqfb9k302x86d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EXC Wind 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqfhz2bqf3dxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Grove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqk2nrv9fnbf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqk9fr19t14j6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garden City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqnbp92pjxyfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Multitrade Rabun Gap, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqnkse03wdkr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqp6w21p63705\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Hollywood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqplg8d489q6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpine Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqqbpl7c184m\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washington Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqw8vb1l5eer2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intercession City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqyt3cbwv1h6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqz8t26lppw33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGregor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqzcc3676bsrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqzgeg1cvrss\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auglaize Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqzlz83dwx2h4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqzr34qd0jt4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bqzsshe76z015\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Honda Torrance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br0fvrn165m66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ANP Bellingham Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br0j24wwvkpyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Jefferson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br0vshy67bsvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br3r452b65hx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Clinton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br4dvwkzxm2p2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LCEC Generation LLVC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br4h3h5h98d21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Prague\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br6cyhhf5fq06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tangier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br6gfnsl6610f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith Falls Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br7jn4rjwrnx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brantley Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br8jm7sr4tyxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ABEC Bidart-Old River LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br9151c81v39c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Louisburg Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/br9905vtj5ns3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Trail Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brbdf3d05yte8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brbx8xwbt88b3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kelly Creek Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brccmbnrn1lz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Odessa-Ector Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brch82jxsp76d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chestnut Ridge Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brd537tvcfqc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hal C Weaver Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brd7hprlcn6md\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bordentown Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brdj5qp5wg647\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gramercy Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brel2jhnyf3hd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CCSU Co-Gen-STBY Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brfynbxxkpb6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mariposa Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brgy57f7pj6y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JED Solid Waste Mgmt Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brjhqzf1fv1c9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deerfield 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brkd1cdgfj8l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Williams College - Campus CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brkh721fjc1m1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brpd5126f94v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loma Linda University Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brqvqqml79hlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CNN Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/brrtj90bjwyk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S D Warren Westbrook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bryytryneq4k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethpage Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs02ghkgx6ksh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Melrose\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs1sz2238xt0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinnacle Wind Force LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs1xre0yhqtt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toksook Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs40vxtf24mvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R C Kirkwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs597z728qc7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Golden West Power Partners LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs6yncwevl962\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSU Northridge Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs8kd6l9yqhz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Williamstown Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bs9zjy97ldnk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadwater Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsbppcnmhgfy1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montezuma Wind II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bscvjh6xffq03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bseh87lyry81d\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOc5YAQAAAP//AQAA//+Yg5ryUQAAAA==\"}"                                                                                                                                                                                                                                                                          
#> [16] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Pit 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsfctc2dyewc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bshqj0e4pmqwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sibley One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bslrp0tpl1ylf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairmont (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsqlc9pkdyzdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vienna Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsqsk20bgmgk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dartmouth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsqtpv87pv3bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsrk72mymb8ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trenton South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bss6dc47j9xtf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tehachapi Energy Storage Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsslpq5skekyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsvhtf2by2sd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bsvnp625h0gv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bswcqjtvdw5s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watson Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bt2x0kyxcttw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kiefer Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bt3g04h2pqmf5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Second Imperial Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bt6k6c2wmm6v6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nodaway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bt8082r4etvqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btbw9x6enrl5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisa Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btdvpb5v9lsl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Denver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btdxeykc4fp84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mormon Flat\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btem6teq7ley2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chuck Lenzie Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btf325keynyx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btfqerz82p1g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arapahoe 3 Community Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bthhwpnffs0v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #17\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btj0gl0qskbe2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btl376c1sje4b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beverly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btmjgl1j8n7lg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingfisher\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btp3hwgv3lge8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btppb6wnhvj77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silver State Solar Power North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btptm27l866zb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salton Sea Power Gen Co - Unit 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btpytzzyl5x56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Old Wardour Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btq2fltrs8lxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Seat Renewable Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btrp2dbcdbty6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Masspower\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bty5m3y1cq7c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toca Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/btz4ehgl7g9mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bv02vt5h82e1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverhead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bv0nv8pb3ll4b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber Geothermal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bv7lydb2cc7l1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ainsworth Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bv8cc11jgwhj2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation NWNA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bv9ge6s7je095\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bv9v9nyxjdz6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcadia Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvdhzy79me703\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny Hydro No 9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvdygcyth5ryh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Voyager Wind III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvexqfswn8mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Persimmon Creek Wind Farm 1, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvfl2ewdjh3g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack McDonough\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvglgzbdyjr86\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yorktown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvhyfhyg4qm88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvq8xc6n3pef4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gleason Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvs45gsqrnj82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvvrcl3p33y2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferson Avenue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvwswby4dyjv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meadow Creek Project Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvxf9k89eetk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zion Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvxwjwdke4kx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NedPower Mount Storm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvy8y760000f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Swamp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bvyceqfvsnbg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw13xnj5t4crd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw51kgclnfev1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Strom Thurmond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw634eh7vzftd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Koppelman Sun CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw7f0mhyq7tbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Boylston Community Shared Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw7qhjm03e3k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswegatchie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw8xtkph6g5b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intel Folsom Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw9rcpbhzvbwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MEPI GT Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bw9tc8fjjpnd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kapstone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwcqn4651t498\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwd9z8q2c9k92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roaring Creek Water Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwfv949j0w893\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Columbia Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwhr39r8em7h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merck Rahway Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwls0e60fe1vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwlveqyf36869\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kanaka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwn36c5d83p34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwp7ehfvrcjnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwpe20bn9z19f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYPH-Queens\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwrd10s1n8z66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cox Waste to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwss1pgxt7txg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elbow Creek Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bwym55hx81fwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T B Simon Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx05e9k3qjg75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SDCCD - Miramar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx74nf6etc889\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westhollow Technology Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx7lly942dngg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acadia Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx93l49ye64e9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"General Chemical\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx94cgh80l2h6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Atqasuk Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx9bpgw3vm2j4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buckeye Florida LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx9f6d4c2g8g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoffmann LaRoche\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bx9ybd284vbvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camden Plant Holdings LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxd097mgyh844\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith Falls Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxge5qz3pf421\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salty Dog II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxhg9pkq7tkq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orient Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxk8dgjnr6x76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hawks Nest Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxng98mmljrxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodsdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxq3d0vdx9qe5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Memphis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxwlj4zvdc5e1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxww1ey118r53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chaffee Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxxcwh22csdbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Forward\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxxq6f7hb0fx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vermillion Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bxy6v4eq1en52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/by60mb3lykr1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Plains Wind Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byb437k9n4jw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewiston Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byc9gr3jhfmpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Creston Ridge II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byd65styps80h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilmarth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byft0nt4yfdx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whittier LFG Power Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bygv5e9k19gec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bylqq6g74jcc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor J Daniel Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byn8vhre8nyqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bynlyb0wf012c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Fond Du Lac\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bypsdmrfsh8v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laurel Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bypyf8x7srwe\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albemarle Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byr1g403gxnyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bys00pjml2mwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Post Rock Wind Power Project, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bysx1357qxyd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tolna\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/byt2klxcr0pyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lubbock Wind Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bywqhfczc14w2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"William Floyd School District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bz125l2qgr6j\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 3032 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bz17p6tcpe4fb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altech III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bz4lxrwsrbs3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bz63jeggtp0x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bz9dd6wc8ctk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anadarko\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzbq0hg2h6erc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterling\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzbr37bg0hq5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzche95qykkcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Yolo Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzg7n0ksq85n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzh54xndezm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Urquhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzj52ywqez6f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Messalonskee 2 (Oakland)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzjr4k7t8vk11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hazlehurst II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzk3399934gl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John H Kerr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzlv1rdtpnk7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boydton Plank Road Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzn0bg2k7yg7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzp7vevpsj8v6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deshler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bzpmps1mqq4x5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/bztgl1n824cz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maquoketa 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c00bpl4kj35b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Priest Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c011ew3prj6h4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foote\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c02qhz722y0p2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Park Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c03lps5xvj65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E D Edwards\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0590ff5bhmzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ryan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c05k3gj3x0k1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c05lqcnhqge8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinckneyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c06t7jcrfgx2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Judith Gap Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c07b7vejlzm5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canaan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c08etkyqegvk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bosque County Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c08jpmx72pqx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Stewart Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0b0y8dzcfgj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Wastewater Reclamation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0ccq1etzrh47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stonewall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0cz190lm1h3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oliver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0fq2rmdqtb62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King Cove\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0hrxmg83ff5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kilbourn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0nx61tx0tfp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elkton Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0nytnczwhm78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hat Creek 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0plbk047zhr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dean Drive Area Electric Generators\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0tne4b6d4xf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Round Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0tvjsdj012m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parnassus Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0vj12ryp20lc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coolidge Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0vzpkyvywv83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lenoir Farm 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0w9l8h0108y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM San Diego-Miramar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0whnhjxnghb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salt Lake Energy Systems\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0xpf4054vbbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sturgeon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0ydw8ggvlh32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Major Oak Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0yqhld1e84q3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cumberland (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0z10gtd5sej4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c0zg9txef416g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parnassus Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1056vh865v5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodyear Lake Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c11ck8b1sp0j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eltopia Branch Canal 4.6\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c160m9ybn3w99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kalaeloa Solar Two\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c16dws6slme5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ILR Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c16te8nd24p76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bedford (MA) Plymouth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c19pm7ntf2j32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grimm Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1h3740qpmd24\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C W Burdick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1m62wwtz5xw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1my8byymn6f6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miki Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1mygbzf95ek9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WED Stilson Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1nqn1dhb9ez\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1q2nr4shr164\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leaburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c1y72mj64cz96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c20cxckmmzbsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beloit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c23dy4f3mmwj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c23m0hh6s4mx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sky Global Power One\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c246ls6l45y71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lay Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c249mb3bx7vn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carmi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c252td62ykspf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middlesex 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c25f58wlzkw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Batesville Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c27nlls93w8d8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cane Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c29bzg0qz3c56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knife Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2b472pmcfzjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Currant Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2byphyhwhcmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2de1nd43sb42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2fgggxydp8pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Honea Path\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2fmbmtxmfnbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakeside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2gbvnmkg244h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chamon Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2j935fw7ksxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marmet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2l9c65jvlgvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McNary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2m945vsd1k15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell City Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2my54263wcs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Salmon A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2ntjgw4wqmhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Voyager Wind IV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2p5sed61xl85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bashaw Solar CSG 1, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2pglpktsl8s4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merl Parr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2pk4m6t9wsd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pontook Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c2sglh2yvcn9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry D Mattison Gas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c33zk31g2x84f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haverhill North Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c36vdhrd3ysb8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pheasant Run Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3by8535lm0cc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mustang\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3c2nfpt2j1q2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3ch25bclhkh5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manitou Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3cmvflep29b8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Soledad Water Reclamation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3exx1zm1e3m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buffalo Center Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3f0lw3qlx621\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angus Anson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3ghl3m0450nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spalding\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3gpbbh9260w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palisades Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3gt6zyxdl7zg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Musselshell Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3jedlkdq4lx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South District Wastewater Treatment Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3m043rk1c4xf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3p7xmcjec8y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Gen 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3pv8wyz4zzfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mendocino\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3pxt41gj09k\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norden 1-3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3tvcj53rpxl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherokee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3whtspgd998b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corona\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c3wv4v777kmy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Statesville Delivery No 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4108bflq3xlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Mountain Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c41kg4z8kpgl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"First Baptist Church of Glenarden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c42bb1jccbj5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broken Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c43nxfzjg4nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Palatka Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c44g1v81bxclh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c44kbqpf2b8t4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia LFG Oak Grove Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c46vqcymj4b62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of Calif Santa Cruz Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4733pfcbs051\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waxdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c47vvbd6ew8n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Poplar Bluff Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c48lveqs267r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Hackettstown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c48ptsnd1y941\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4c3bpyylghqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4d1vx71v7gj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Two Pine Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4feph7v724jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Churchill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4he2e4qsxgm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Presbyterian Senior Living Service\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4j5r4ywtd345\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpena Cement Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4n4ycnp4jkr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dartmouth Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4q395fg0xjr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SCE-Snowline-White Road (South)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4r4w5hmceb8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thorpe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4vl8kv8hr7r3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midway Solar - TX\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4wvmc35xt411\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upper Mechanicville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4xnyy7x7t611\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shrewsbury Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4z3r1p6mr6nc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c4zmgtebjhbz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imperial Valley Solar Co (IVSC) 2, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c52t745n6wyrc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hardy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c550ryqvypdp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S A Carlson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c55g19l7cmqhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cannon Falls Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c58403ytqhfn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Friends\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c58qs1472yzhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walton Street Substation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5bw38nzd9r17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dover Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5c7tjbd992xg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Generating LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5c9yhtdbxync\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite Ridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5ccw0tfy4g57\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Graphic Packaging International Augusta Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5d2df37e2v73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Braintree Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5dmqe0ykb9df\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dempsey Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5e22nz1b86h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5fnkj7tvnkgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City West Diesel Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5he07jhk1wx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5hs227p82n15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt.Sinai-St.Lukes Roosevelt Hosp. Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5j7qxyzqqvlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGinness Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5l68q1z1ybl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sylvarena\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5n1rhd6bx72c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotlik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5nn7kdw43dvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buffalo Gap 3 Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5p652chq1mkb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5x1ekdebbtj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny Hydro No 8\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c5x3zkwtxe7r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bath County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c616b36nm5cw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunt Road Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c61tlnx90yeff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hennepin Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c61xtcj1mzs12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation NWNA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6303wzz8rg44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dorchester Solar Site\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6475cr4kq322\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trimble County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c64jy9c96sxg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Prague\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c670ctw5p85y1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solon Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c69527x1lf5n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John B Rich Memorial Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c69c40zwsq705\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pickwick Landing Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c69p9hbrlzdj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Equilon Los Angeles Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6cy335zjvhk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J.R. Simplot Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6d1gxcd0zk99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windsor Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6dr3wm8333v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orchard Ranch Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6gcfm47s2d89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Livermore Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6gcmbxrnc3w3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6gdt3wzyyy9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6gyjwyv804c7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Francis Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6tf8lnrs5zq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burwell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c6txmj11rpnv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Point, Pump Station Rd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7000hr1zw156\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Neal Hot Springs Geothermal Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7047me00qmtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Cliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c72x0zcbhpnv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Markham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c74kqnnjx8r0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biola University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c754vh9vjxe5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McWilliams\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c75s4n60b7tmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gardner Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c763gwpwn7r6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marquette Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c77b3kdqfmg7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springerville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c77db1wqjpg4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c77tqjel8nyz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solano Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c783ycde7p9jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shungnak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c79qwykjfz3b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lon Wright\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7f2thd2eslv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7h07nrtdlyj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mayo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7hjtkl7s3mx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 2 Orange County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7hrvtgdhw5pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7jjltn7p613\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middle Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7le379xjg558\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pixelle Specialty Solutions LLC - Spring Grove Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7m813m3nq89f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mercy Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7nc6rp2lcw2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Bern\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7njshwkykgd8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I 95 Municipal Landfill Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7qtmckz8vcnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Palo Alto\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7tf6d5smpc42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7vg4f0k0v3j3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaston County Renewable Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7xkfzbswtew8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flos Inn Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c7zy5e91ltpwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Hills Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c81kn1fnmn3wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trinidad (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c842gy0z3fsh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c86cbh23xlvhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney A Murray Jr Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8ceg3q30r7mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kiamichi Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8ct08dqg9p88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Waconia Community Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8jpcd3htg9q8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Connell East LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8phdwmdyv6f3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawnee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8q7dv23967x4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Julia Hills LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8qqdsdtfrzr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deercroft I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8rdky1w6q7x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toledo Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8rhmy4krcw2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8rkghc54bzvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8sgw8s68jy93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Packaged Meats Corp.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8tj52stj5hbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8vvg3q1l4jg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffeen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8w57s8k7p4h8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Hempstead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c8wyd9psev698\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock (TX)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c909zk2zfh629\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cos Cob\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c90cb6tqeyyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exelon Medway LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c90ev6dp51cx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riley Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c91mphempcj19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c91y7s0rzl1v5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fremont Community Digester, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c92lq3p3txbrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hyder II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c93980fcl7f11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox Creek Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c99hex151hrx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lookout Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9b07tl7wlysb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bloomfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9b3vztgdlvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hurricane City Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9dt7h90j1n67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Duanesburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9dzltfkgl9vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apalachia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9fydmbq5lpq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magnolia Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9gqdv64fw912\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"A G Wishon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9l27mvc5js05\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carmi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9m5e72h4tgb8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingsford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9njz72qzywgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9q1mq8c5tet2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"US GSA - Sacramento\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9qg449yprycb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Valley (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9qsgjbydgy1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9rx9m9y6j4c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 250, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9sfyhcptj4p4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Tower Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9t85y536l3p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midway Sunset Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9v4fdmm0fn73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arlington Outlet Hydroelectric Generator\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9vdv05g758wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahoka\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9vywp9wp5ed3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillingham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9vzbdz5mvy0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Audrain Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9wzbl08yqedf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kortes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9yhv3l7rhh91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chevak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9ykytyc4b323\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hay Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9yx5e8jww4q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoot Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9yxzp0058k5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westmont 300A\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/c9zlrrw6j8cy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westside Solar Power PV1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cb124252epe8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cb3y2te3ssf0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Burlington Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cb657x3gy3qb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wisconsin Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cb6jwyf10q1b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wistaria Ranch Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cb8vrnrf42496\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Des Plaines Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbg3k8jkbqg27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Barnet\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbh55hqs81sq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ludlow Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbjdq336rrsl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowling Green Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbltxs4mmqx7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allendorf\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbnj58gr164kd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indeck Silver Springs Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbnl60y0h027d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Garrett County - DPU Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbpc9t0ywgd89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbq8ee7gnswlg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taconite Ridge 1 Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbqec5ch5bsed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JM Shafer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbqp6m1c0lzvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Axio Green LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cbtbsvj7d1m8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc1tztjy91krc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ingleside Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc23w4n87ged4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheaton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc2csbt30p8y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Texico Wind Ranch LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc2rq605zxfp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W H Weatherspoon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc3e6vk6zzcl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley (CA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc5fk5p9xs9g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Fork\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc5njw1ddh8y7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Plains\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc6333sxez1yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc6p986rfge6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheatland Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cc7pyshkpgez4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pendleton County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccbvt6z3bmyz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Wastewater Reclamation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccbxjf92e0hy7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trinidad (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccc0nw8hpq4g5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Volta 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccc1wp26kzdsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler Ridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cccyqkkqrb8zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broken Bow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccdsbr90bfdn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yonah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccdyyhl9cvxk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chandler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccjwqbqpxy0rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higgins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccl5m8zvxgb17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decker Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccnk4d90e6eyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cooper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccpg4dxenxj0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ubly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccq880kd52ljh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chino Solar Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccqftkp3rr267\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shooting Star\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccr8jd5m899z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean State Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccrsnns0mvblb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E F Barrett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccsdskvx16w13\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mora Drop Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cct3829erd9z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Estill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cct5hn0cy2p32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arizona Western College PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ccxyegdsyzml6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Cajun 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd04pemjrkg3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd18j03nelv7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd1r3ryx0vzhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Wastewater Reclamation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd1r7f4pl4fn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elkins Generating Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd1wgxcm4x9p\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California Valley Solar Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd4q91skk0th2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Creek Energy Systems I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd4rpwqrfw5lg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd51rdexw8cnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tesoro Wilmington Calciner\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd5q164ym3w44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Odell Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd63nkl371j18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lime Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd73e83m2nlvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd8emsewq5feb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverbay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cd92zwp4t5qh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Astoria 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdfv16dhmz14b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H M Jackson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdlvgyk29gt34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brandy Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdmmmp6vhrqmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenansville Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdpnml3j38jv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdr8kw7wwgzng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Haven Diesel Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdsltj17g0n8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Passaic Valley Water Commission\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cdvgj36gkvb7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Washington Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ce0m62r5y11y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ce172p02wcfe5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brooklyn Navy Yard Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ce9y6q8lfm2q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Austin Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ceb3b711qh5h8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henrico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ceb47g9qm6wp4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Owens Corning at Bethlehem\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cecd6dhhtttxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jesup Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cedly3nd4p5p6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wildwood Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cefgd02mf0njh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McMinnville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cegnx18942t88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Midulla Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cehxs7le807z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pueblo Airport Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cekp1tqdvrgr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Island Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cem01l718wdh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IP Springfield Oregon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cemd7wz55gvcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cenhljtxkwrkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"APP Prune A-D\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cenyjsq71rkcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NY Times Daily Production Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cesspb488f195\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optimum Wind 6 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cevj9g66z3nc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cevq5b38xxmzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia Power at Jakin GA PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cey253zmlqtj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Fork\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ceykj38m5re4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goose Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cf0v4jx56jfk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilbur\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cf5qvg76m4kjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cf5ssb5qv7ftf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Klawock Power Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cf8qpkfk7fk9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colfax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cf9jh3gghjfh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethpage Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfb6y0qxs80db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairfax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfdc0kelrhn3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McCoy Solar Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfftwy4n0wb8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Francisquito 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfgn48qv2lrr9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HVCC Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfgx3f72c5x5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfh2l7j96ns91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Lake Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfjj32tm04ld3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PopeSun CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfkb06ddtq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forest Creek Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfksft0hs7e3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gore Mountain Solar II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfkxl1q52e7y9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Westward\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfppxehbkvrm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharpe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfpt08v8r40m9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfqcdjy15de2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Street Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfqdzjemgg15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bull Street Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfr2qzd6rf8jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comanche (OK)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfr9hby18dff2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thornton PV1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfrgvmz7xhzs2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fuyao Glass Illinois Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfw6f91btlt56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Oklahoma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cfytbt5ytfxn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushman 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cg2tzb6b4bysg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cg43993kchr46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgbdqt7v3xnq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Junta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgchkwwx4ztt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgej3hvw9q009\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trinity College Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgfheytsm4qbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cggkz4z7ntf4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cggpkxds87l8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh Combined Cycle Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgjzn0cjf4261\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carthage\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgp0b7vwswwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgqngfwprc04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camelot Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgw1c4rrngw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison Utilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgx9pqsvnhw19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Earthmovers LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgxvz25p6wvb8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Mac Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cgz9cpx6zsfn8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turnkey Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch0vx11clhcm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bancroft\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch1bndrsl1r44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch3lypcxlmt5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Synergy Biogas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch3qbe84htwn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hampshire College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch501rnn30mb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch53lfmqfnyk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lookout Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch6rwhe4fqmx9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek Water Works\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch7066wejc9cg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puna Geothermal Venture I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ch8p39wl32d87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chbwfd8qfp223\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Star Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cheb1km5mx9h5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopewell Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chg4gpskkr7ed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elizabethtown Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chg8lsbjdqq67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Winds SD1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chhkyhlbwrqg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chjhptjkk5zs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pleasant Valley Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chkwqwl83rkz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaston Shoals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chl1f4pq33dtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mahoning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chlk7bj654ydh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hiwassee Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chnkpx75nm6n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hartford Landfill Solar EGF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cht7xn0h1eqy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ashtabula\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/chxdt26k94224\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kettering Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cj1w1tk9nz42c\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOQ7YAQAAAP//AQAA//+NCEJZUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
#> [17] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Dover Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cj5mtrq4t6gtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manchester Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cj62yd853bc18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cj8mlde902f8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Santa Ynez Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cj9bw2r4v8qz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cow Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjbtzhgw10x8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjhdqmg7znfdb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BNB Camden Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjhg9v5s6v191\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjhl93n3qbrd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Centerville PH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjjcdlztbq658\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oregon Clean Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjkeb8t4pp9g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higginsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjl9bl8t62q2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Station (DE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjmcc5x9hg7t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Valley (IN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjmwt1m02kpz4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjnxq772j0z41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fernandina Beach Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjrhrdhswg2fd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Delano Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjtjzjk0bt3jf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tinton Falls Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjtsykq9w28j8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dover Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjtx6kck46cdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cjxyr3t9t4f7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck27bsj579d89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodman Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck40szrh2qkh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Gas-Port Charlotte LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck5lrs5yyl9k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southcentral Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck6558bhf9432\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Synata Hugoton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck7vxvqgtp8j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southcentral Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck84srcvkns39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Helzel & Schwarzhoff 88 Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ck8fs8mt6p6d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE Stolee CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckbehnw3fjt0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewiston Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckcyeyymh44vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arvah B Hopkins\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckewxkxw7n0x3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seven Mile Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckfwge3vh08lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sheldon Springs Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckhy2f30z9ybd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TNSG South Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckjb1j4k3dn62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vallecito Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckjh84hvl37n5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodyear Beaumont Chemical Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckkbxegmkh2kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEPV Mojave West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckkm1p86g8lx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gadsby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cklebprhyjr5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sudbury Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cknvcm2tl1drd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brent Run Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckqwwchwew32f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Roman Wind I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cksc8nmwffwfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springfield (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckt1sdngcjeg3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croswell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckt39pbtczw55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Channel Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cktzjm6zvk417\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckvdhbxqevqlf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kings Mountain Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ckyfwc6mwnkt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ohio Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl16wgd1010k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anchorage 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl24erd19vlyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BWC Origination 18\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl2djn9kdl1jb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shasta Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl3jt0jbmvee9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CM48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl530vvnm4rzc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhode Island State Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl6hfg1hrfy88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charlestown Wind Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl7v1vqfvm1y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneva\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cl8pn6wr4h23c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hazle Spindle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clcxncwmryljd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Temple SEGF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cldgec35vv016\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Murphys\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cleznxy4jdxt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roanoke Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clhz4f08n0nlc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suffolk Energy Partners LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cllcrwc1e5493\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"General Electric Great Falls Upper Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clltr046ff9gg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Neptune Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cln28v55kdkb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winchester Power Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clwt5r6fdg3ef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Columbia Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clx0hmepzws67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pocono Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clyrgx9rpwvb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Varick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clyvzqx47gcdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stockton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clz9w80vz8974\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aniak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/clzthzg6brzc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewiston Niagara\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm1gd3k8qt593\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Bravo Solar II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm64c7s26g57h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bernhardt Furniture Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm7512366drd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nixa Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm7nlegp1n7z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm83yeqtmp5pg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falmouth Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm8xwqwj193yb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CFW Solar X LLC - Vaughn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cm9l2enbmr3tg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Storm Lake 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmbdq0k10qe88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spion Kop Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmdf6erllv71h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thermalito\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmdyxj7s8xpnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apple Data Center - PV2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cme1v8ydzpd4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmehs5v2qplk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Biomass One LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmmbqxqlplx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waxdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmmgzslr9wcq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rogers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmnmwes0gw8p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lubbock Wind Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmryqczdwh29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E F Barrett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmxz61fyr9fk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greers Ferry Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmyrsfmgb5tg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willow Island Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cmz30vd5sltp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carl Friedrich Gauss Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn1vxvv9nqm9h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quail Run Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn24mbc84p7x1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Main Street (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn3kc5wrvqh97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cargill Dry Creek Biofactory\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn5gw5e61pq26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northampton Landfill Solar PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn6tz2ys5c6m3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thomas M Knott Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn9r33x8k8362\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chickamauga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cn9v3rkbetzkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ramona Solar Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnfgd7bq3n8kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HL Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnfvn4j700y78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soda Lake Geothermal No I II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cng7ypzcc9nt1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Halifax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnj834gcsvf93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NY - Presbyt. Hospital - 525 E 68TH St\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnl4g9s968qq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSUCI Site Authority\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnlvj573d908h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saluda Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnnnzkmqkgbxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethel Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnp5hpcpq1st1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jocassee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnpdlcvb1wr76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foote Creek III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnpvspxvt1c34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Livingston Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnr03x437s7q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnrrgbytbg1g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"George M Sullivan Generation Plant 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnywwjvp7zx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnzfzyrsk5hr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldock Solar Highway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cnzt3w7gkp8t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hancock Wind Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp04j8hdz24c8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Charleston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp06l49js2dng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skookumchuck\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp2sgnzcpjk03\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp2x78mfpgel1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Chalk Point CT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp309kcbk5ttg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Culbertson Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp4gnqpvvl855\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buckeye Florida LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp4v8dfvr0y64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yates Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp6qclz2s60g5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Hubbard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp8dyk6bkwf91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oleander Power Project LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cp8t8753y3n82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpcrb2wx5gh6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haworth Water Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpfnrj5rgdxg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Lion Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpgxlqcdtjgq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin (CA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpgxt6g6wlp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pueblo Airport Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cphdlq75jhdl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cphf6ld3z4lz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonny Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpk041bd6g5sd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS Pine Bend\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpkrlj9s1grm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eastman Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cplbxyelrlyv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Table Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cplfzfgfxgpp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quakertown Solar Farm, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cplq9456fw259\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Regeneron Pharmaceuticals Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpm9jq5jebtz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NCAH Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpp3cetsscmc1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morton Salt Rittman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cppkmsgcxd8fh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kearsarge Granby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpqxxnplq6j81\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chasm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpsb4g0wgyekb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"eBay - South Jordan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpseq74shj7w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cptjqpfen8fw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ryan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpv6p7vnwxghf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Christoffer Wind Energy III LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpwsdy7kh6crb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"French Meadows\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cpxg3k08mt73b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whittier LFG Power Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cq0mh7830lcbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moorings Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cq3gzntdjz0f2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Johns Health Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cq4tbrv4q8rqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockwood Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cq687cq7wem65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakeside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cq9met721vwr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springerville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cq9vncfrxg2r9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Vegas Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqd4hg639kgx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Traer Main\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqd79rzm1lefd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dogwood Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqe0bz9pn91fd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waihonu North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqetmnc2ne9b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mother Ann Lee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqfwjneq94m84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flash Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqfx2rzylvze8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoffmann LaRoche\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqgk3km1jp7y5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Michigan City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqgwr80vnbf68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rumford Falls Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqj8e6bk2l648\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Water Street Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqjms2ff6x2tc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wiscoy 170\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqjz2zl0k0dkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carter Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqk33hzv033sg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"City of Havre De Grace C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqk9qdq92mjc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Purdue University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqkxsyzebzzh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swanmill Windfarm I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cql7yv1p0lwf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Eco Vista LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqnvftekjwyf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqq0qmrw8j5t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gowanus Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqq7h5mdlnf8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Methuen Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqtljgvhzrb4b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Atqasuk Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqvk08n6pqke9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tri-County Water Hydropower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqvmskd6lh9n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Tower Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqybg6dg589hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Texas at Dallas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cqywrmf0641fd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C P Kelco San Diego Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr04sqxj6ndp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr17zhqqw3812\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boundary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr3k0v12yz5x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Granite\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr3z9p87rmcxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincolnton High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr40t9q6mf8w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Tell City Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr63g18ez0gt\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California Institute of Technology\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr77drnsv9x19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola Florida Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr8v1m1sndsz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cr8xbxfn32zxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crbj6rkr6e3n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadalbin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crcqjryjq3154\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgewood Providence Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crgbz2dsby8z\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rengstorf Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crgmelt9v57c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hampshire College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crl8x6yjwq6y7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nottoway Diesel Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crnss13ft20wf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orrville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crrjgbgk7z058\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chula Vista Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crrz9z0g4sc34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Branch (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crt9n9z8mr2l9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rawhide\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crv6s1df7vcrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy W H Sammis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/crxlpe28wb1pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boise R Diversion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs164fyy24mt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Allen Franklin Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs1drhh1w2teh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paulding Wind Farm II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs1f57w9kkjx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cutler Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs1rncr4y7dy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flint Creek Hydroelectric LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs36dkr5zff45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs3sqtvw1k9yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cs610p48942r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Guernsey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csbwfzsxrkn48\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Airport 1 Solar (DIA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cscsc0tbt90g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cse4zdngx7kv1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deerfield 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csggb29mrtefb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE Stolee CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csh11ed1x9yc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G2 Energy Ostrom Road LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csh3052w82yy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denison Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csnpqm0b11j34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cspk8gl73fxmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Creek I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csqhq13ezmhe5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brush Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csqk311f82zc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paramount Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csrj2kt8s5yz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherwood H Smith Jr Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cst2btnqb464f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Acres\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cst6rdlqlcxmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Division 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csx6tqcwcjdw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chino Mines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csxy0melcc8xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Hill Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/csy58ylf28d68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanier Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cszvdzdcld7lb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ct045t9ryvx4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ct2vrg6mntlg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drum 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ct4recheml1l7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Imperial Savannah LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ct920fdp51bhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Simonds\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctbm98ys91x96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Hollow Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctc9ke0pvxn8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moline\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctd6j35lgfe3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #07\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctehsmex5sbt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quinebaug Lower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctf5g1ydnyhtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auburn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cthp7p2t1th9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawnee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctltv1frlwvy2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctpts8yx0e1s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctpwhpbsz1fv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Chicopee Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctq6rw11255p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redding Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctt4se08725c6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springfield (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctv7z0j1t569\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deshler\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctveyyvvff1z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctwq09qh2xnfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oberlin (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctxlr1h6d4gc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skillman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctyph2yfjq7w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CF Novel Solar CSG Gardens Eleven, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ctzr40vvpk1tg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Anaktuvuk Pass\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cv0blj0zx0md2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cv0d6syzkc3xg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay View Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cv3qe8k0sjrs3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cv58gwjrtjks3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cv6lt7ydpwwq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Titusville Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cv9zs47f6dg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Interstate Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvbnzb3hqsjqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Westward Unit 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvd5nyse0hb79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvdn6qzt8wtec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Industrial Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvdp0ke1g76c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Evanston Township High School\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cveyl7j1z3gl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shenandoah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvjnzbdckwq47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk Mound\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvl5dp0ecxrj7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exeter Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvm0sfr6r444h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvqttmmvs1hcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Covanta Alexandria/Arlington Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvtd10stph3mc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvvlcddzvgf41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadridge Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvxft5803f0nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miami Fort\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvxgrz8cp6br5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cvyt9gsvzpx5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw271wvg14wp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw58pkme4j2dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Brookfield Solar - Gilbertsville Rd CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw6gvs48trlr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Laverne Diesel Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw75xf2h8h24b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Power 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw7pcvc8xyhj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Gloucester LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw7x7w69t62p1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #11\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw8d3g9t9qc7c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mosinee Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cw8vqc5zhy488\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gambell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwbdkj4yrkhq2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwc52ynkf3ndf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stuart (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwdtj3d8kr7j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Breezy Bucks II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwf0hvmnpkyn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lightning Dock Geothermal HI-01, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwfjhh6q13s8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland Farm Services\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwghb7ncxhdk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clinton LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwh2sl3j5b10g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Benton Falls Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwkrkw9rwe192\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harbor Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwnvbw32rkzph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dardanelle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwrh41z4ks9f6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CNN Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwrlm7d0xb7z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jacobson 5 MW Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwrx6bxqhmymh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corcoran Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwtf3744bfmgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erie Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwx2vet5006nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison Utilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cwzdstdpqvvgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockford Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx3nhhfvnrlqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CII Methane Management III LFG Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx3nm07lgwlz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Creek (SC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx4n64cffqe4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx6h8jvn7pkpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Farm VI, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx8mrbt6pm626\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copco 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx97sh9wd0kv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tiverton Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cx99hl3kx12z6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Power I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxb9mcyq42698\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunnyside Cogen Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxhv2nfxyyxhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NYC-HH-New Bellevue Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxjek68de0rcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Slocum\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxk6zlmfrb1m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Sterlington Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxl62mr8ph7h2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TPC Windfarms LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxmgsf7ntl2n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solverde 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxn2jz9b9s1s\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colchester 16\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxp7zrqjygr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Van Slyke Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxsr10l47k0n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegan Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxv05t8zqqq68\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Michigan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxxvp6107wgqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Jay Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxy7tr3e49cm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelby Randolph Road Solar 1, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cxzdv8lh7ckm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"XPF Solar Field\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cy1kwse7w0psh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Top LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cy4hcrs4d7nbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunterstown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cy63xxwm28541\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I 95 Landfill Phase II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cy7xvfnqf7tt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Diego State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cy8ed5lsk3mmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cy9q8gtf0kbyd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Humboldt Sawmill Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cydm1clx2gqvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyfds38geszn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yankton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyhkr7m6n8l3f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canton North Carolina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyjrhzcw922v2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ocean County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyjybtwhlfpd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyk8jbn7w69kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Municipal Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyn5xs7ny1brh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cyn64vd5630j6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emory Decatur Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cz257x62pecff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cz80294ghrjhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/cz9qhenn7tnv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raritan Solar - 53 Highway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czeyqq4238mhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Asbury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czfcegc67b3jc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaviota Oil Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czj2r39p57043\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #42\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czjvshdfnlz91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czkpn4x8e18m1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carousel Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czljknt6p3yzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ravenswood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czq3vqxc58gz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WPPI Hartford DG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czrnrffgg7qnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Point PH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czt4yf17nsdk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rosemount Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czvbwx9n74lz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yardville Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czw9wqyc9hwbc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IKEA Round Rock 027\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/czy6ngm6jw3e1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodward Mountain II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d001z5ek2xnm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fullerton Mill CHP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d01r1mys7k0vf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Gateway Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d077085sw0hn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d092cte5y8h42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fisk Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d099w34e7rt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waukegan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0blhx9gtf98c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie Fire\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0ct3qq2t2029\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buidling L\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0fc8dgs0s381\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colbert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0g9y4t394sxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waste Management Middle Peninsula LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0h66kg10enrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deadwood Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0hdm0e9x6sng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Camden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0kq8j2z8wkxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optim Energy Altura Cogen LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0ljgd3vehvpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hammond\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0lqpf03v0vs9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunn Paper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0mqp6fy13hnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caledonia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0pk3p3w8003h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ArcelorMittal Indiana Harbor West\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0qlkvvp5xb55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0qt1mcvlsr8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selkirk Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0rjmjx24d9bc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE CPS3 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0sqvc3embsr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Savanna Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0tpbsf4he96c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Top of the World Windpower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0tt10z5rzs4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notch Cliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0v3qwc873y74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"I 95 Municipal Landfill Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0w3z19hs1ft7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agrium Kenai Nitrogen Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0yh5sgwdxhv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Low Moor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0yq815sl8s39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NSB Point Lay Utility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0yvrsykcvl0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Texas City Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d0z0tnhx4jp58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1091r9lcee1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sartell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d11twvb9wrp98\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edward L. Addison Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d13szbnt1zkk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hollidays Bridge Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d16gnrrjpntw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d17slcdklcexh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Texico Wind Ranch LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1c0e41edw995\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arizona Western College PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1ggycq8k8pwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montefieor Medical Center Moses Division\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1gksfxcwjtv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Wind Park, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1gmmlb03mv5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Croix Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1l0knd8kfv73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clearwater Paper IPP Lewiston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1sbrcc25bts4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1tc2h6ezr8s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor J Daniel Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1xkgvtx8tj7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deweys Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1xz8tzg8qrvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Quinebaug Lower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d1zdkrmgxrwmh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warner Lambert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d22egp8nr7t89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McNary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d24tlvsmd6ww6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Grande\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2542d49p2781\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swan Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d28nnn004q0w7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decatur Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2dgwsx01rf2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox CSG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2dsdtby873hg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM Yolo Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2fp2gq8pzk06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Park Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2g94n3lyh0nd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Commonwealth Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2kb4k6eds666\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenrock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2kn5wyndp9g3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gauley River Power Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2m227gfh36e3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CM48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2mek9qmef2gb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2mt3h8hz6wr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parr Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2n4n7gxpt8e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Goose\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2ngcf16sj2w2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Putnam (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2p0p36v6nvx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cargill Salt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2ry4y7h1c8pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Avenal Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2t019gpcf7s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acushnet- High Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2t28tbpgzlq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2x318fq2qyq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corpus Christi Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2x813zsbn3v5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Androscoggin Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2x89negd8v36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Teche\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2xybmr6t6r79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Phelps Dodge Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2ye26np04whg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dam No. 5 Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d2zw8je4dwe7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia LFG Pine Ridge Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d31z8bmz6k5q5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushman 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3216yl2nz5x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shakopee Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d36kdpz3c1pm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d37bj5bsbxp46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d39t22jl5zp3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darlington County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3cjmrfmyzq72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Hawk Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3cljgx74t922\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3fncqxy1rb8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MF Mesa Lane LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3hsdz1zjbel7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fitchburg Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3hswwkmkfmy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gordonsville Energy LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3jejdz0ew73d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kahului\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3kve869gexh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PaTu Wind Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3mjyxwnfell\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elkton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3ngc5e57kpy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Handsome Lake Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3pd60l3kbmk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"W A Parish\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3sdjvln2csp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ubly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3sytgkdz14c2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3t368rgfl7q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 2972 Stender, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3vhyxvx91tz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ida Grove Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3wpceftyyvy3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cogeneration 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d3z62px9ts1n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler-Warner Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d40cj01j9cew8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McCoy Solar Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d42j4xlcxqny6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Valley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d44elm832q087\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d46ls9se00zb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muskogee Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4783df9xv911\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Lisbon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4845hf287tnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Valley Generation Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d48h81x5cdg58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert S Kerr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d49l6pn24lnn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AEP Milton NaS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4b7tqz4b1nw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaylord - Wolverine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4bbvnrr2w2x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Old Trail Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4ce270g7ys9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elroy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4g0mgb0w9zp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Liberty I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4he9snbsvk22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coronus Adelanto West 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4j105gthyxlh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"USS Big Lake 1 Solar CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4j7esmpj9vm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richmond Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4jqk8fdpyeg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayville Central Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4jrspy13fsw9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4meyxmb1h6k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cane Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4pdz6nt2kx5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumpter Energy Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4rhwwr440e28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jonesboro City Water & Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4x8mzs24xfv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d4z3brdqphvm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d50fdyjnzqd18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foothills Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d514kkhw3tq79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henrietta Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d54lt46yq3yr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5567pc9xblh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chadbourn Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d57xf5vhy60rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Empire Generating Co LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d58hpgrry9322\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dardanelle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d59mlt2vq8mn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minwind 3-9\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5c4dd79611e5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5cw6mvrtm7g7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"James E. Rogers Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5fs19qbznw28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belleville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5gvrmgxm8077\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heller Industrial Parks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5h56pk5ks2p4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5hvc2f6v2rnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5kqrmz8mwd4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TX Jumbo Road Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5l5ewqpez0l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cadyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5lwwfzglh4z6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victory Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5m9b85fvs8d2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S W Bailey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5mbdr3bllx4b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broad River Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5r93ktd5p8mh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cooke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5slsclv6lvv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whirlpool Corporation - Ottawa Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5tr5v25r61vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5vh6repc6x96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5xpf2bwpp7m9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wrightsville Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5xprprkenrwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Allen Franklin Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d5zjpbte5d96c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Acushnet Hawes Reed Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d61ff67z0kvkd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Gas-Port Charlotte LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d62rw86kpmkq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d62xhb1cpmlv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Ridge Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d639v108jp9s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Tech Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d67fnp06lf2e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Edwards\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d67pj3f8cqm9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grand Coulee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d689vcxedqez3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shakopee Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6dcf03mt07sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Gabriel Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6fslfpxq9mkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McPhee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6hh0jzjf44k3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elwood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6k009l393b08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith College Central Heating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6ktb20j7dp82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #05\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6nn3vlymprpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gila River Power Block 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6wfsrg2zs8hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conemaugh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6xnvghjqsl06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia Canal Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d6yh24850rq2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pine Tree Landfill Gas to Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7262jdk6sxeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ormesa II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d751qkhy6tpxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Auto Insurance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d76be08dwdkef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Black Dog\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d795plcr9hdfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hobart Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d79bgcgr6f6cc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Collierville Powerhouse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7cn1ez9s1yy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oceana Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7f49xb25l992\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Raccoon Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7fdcp0ln5vq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7fl1wbcbj1mf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm Insur Support Center Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7hhhwc0k0qp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Energy Plant USU\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7jt3yt642d72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7k0zjzsbdvch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack Watson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7mxztq1vt0x6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterford Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7p4f2w7pyd7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7rvgjgvr0ff6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oxnard Wastewater Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7tty0r8mpww5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carlyle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7vrgv55bv814\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fredonia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7xnrj7x212e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Felicia Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7xre6vfwenb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gadsby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d7y76p67he38c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sierra Pacific Quincy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d80vfrxdbfsh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Sandy Peaker Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d81ml4rgsp8tg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d82vxltmz70rg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Madison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d83890crmjgg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 1 Orange County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d83lkcqy6yf26\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYObY4AQAAAP//AQAA//9oiaJLUQAAAA==\"}"                                                                                                                                                                           
#> [18] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Spring Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d84ce7y9kyz8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d84de4phntcm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dave Gates Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d854g5k8kn979\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yucca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d871kj1vtrrl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Masser Farms Realty Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d89y8t1r9h7l5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunEdison Anheuser Busch Fairfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d89ymnwm3x889\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ingleside Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8bv7y6jywxv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunkirk Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8g6d18stjh47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ramona 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8l3mcg0gr9eg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vaughn Creek PV1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8nnv4d6gh56b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Lawerence University - Sutton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8twq4c8rj9w1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edward C Hyatt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8v2b2dpmk7m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gavins Point\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8vssxqb6mgx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 15, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d8xex6b5slb3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clearwater 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d903y4v1z6pjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brame Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d90ffplkysc28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hewlett Packard Enterprise\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d92y9xddx4pp7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York Methodist Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d939e2c0ejjgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tehachapi Wind Resource II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d93j9vn9hwm21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beecher Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d96swexhrbe52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Corp - Nekoosa Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d97s62cmj8plc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9c5envh0z45h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy Bruce Mansfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9g2dq5s08tpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DodgeSun CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9gdkz51bgnnd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mass Midstate Solar 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9l97pzs3mtf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9lyxds8etex5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunner Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9m4jgq38v5pf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schofield Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9mc1mw7s3de6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rokeby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9qgbthgh3hdc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forney Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9qwnggnz875c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Canyon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9rbbm6n9tck8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9seqdf6ppn1b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calpine Vineland Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9tnfnmp5qee\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Magic Dam Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9trlcvxnx0mg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brooklyn Hospital Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9wc3x3rwm2s8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Albert Einstein College of Medicine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9xjgb1qsb8yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hydaburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9xzg9q1s03kb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Craig (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9yq280mxyc45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Island Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/d9yq2pjcs25n6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhodhiss\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db1te4btms55d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"York Generation Company LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db27q9ns6e5n\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schaghticoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db5623sqsbw9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coffin Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db5j6jet80qq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carol Jean Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db8ejzrkwm486\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rubart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db8ngmvmdj8rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Highland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db9b7f7n19kk\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Haven Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db9t15erw986f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Guadalupe Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/db9wmbcp4qjeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Point Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbb8s4kx89ebd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ReEnergy Livermore Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbbrmyr9bz7yg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trenton North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbbt2jt5rwej9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nash 64 Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbdsqg5qkjnz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barnwell Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbe2esftx3jx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ward Butte Windfarm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbedyvqyqbk51\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kimberly Clark-Unit 1,2,3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbfbcyhez45n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Germantown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbfrq522ge1kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John R Kelly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbjtt1fgykrwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Solar Las Vegas MB-1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbmcwklvw7r7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Mexico State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbmr02kb8fbwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbs44phc01w9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wake County LFG Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbw6d7m7mhqwg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Cloud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbwmbpyv2xtk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sendero\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbyrwb5x093x\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belle Haven Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbz3vehss1sl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Durham AWTF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dbzghxk0x21qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Akron WRF\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dc055jgzl0vz2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McLeansboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dc060ehvwez34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dc3rmrxkel5l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McKenzie Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dc52eq93esl14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Valley Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dc5rc747rrpn7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pit 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dc85ty54s8l28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indian Valley Dam Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcb0te0qytd8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oahe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcc1mg782f5dg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Redondo Beach LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcclt8bkhg0rf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bergen Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dccxfn47p4ybf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otis Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcdz01kqesex7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dce0816rser62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Power 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dce3mf59y85sc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcfs7lfk2znsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dchnedr73tw94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milner Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcl78k0c9ns56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elmwood Park Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcn42qqldbg0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcnhsyzzb176g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nesvold Watertown Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcsh7rqd69pzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rio Bravo Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcwd1c7xq4hq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Riverdale Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcxl58478xp6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Bridges LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcxmw19w1kg6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Batesville Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dcy95d6b1tsb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Patrick Henry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dczvwyjdnxmfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tunnel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd1kg2mm2vl72\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Bayou 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd5293kb3mel3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Macon Solar Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd5x94df5scr8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sundance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd6bjhxjr3yvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tart Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd6qehwx9j1h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Harvest Solar NDP1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd7s3w8zevb46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"G W Ivey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dd9m6qebrz9z1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zion Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddbp630tmhm94\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optimum Wind 3 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dddfhjb00r8qc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McCallum Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddejp41tl91r3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Peak Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddkvjsgdxjrz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MCAGCC Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddlme0xm4zjb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddpjf0wbtk3ph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddqgk15cl7pth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cumberland (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddrrwsf47b3d4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gratiot Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddwnnkhy9y0n5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dinuba Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddx586j10zb9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Wind Enterprises LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddy8nvzpjcw3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wappinger Falls Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddz7ejz9txsc2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DFW Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ddzpzfs29863h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa Hydro LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de00qny6877e2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bucks Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de09kf4wbk09g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boone Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de49jkden2dkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de4zl2gktslk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goal Line LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de5c76137wk15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de5pt96zrk21g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/de70c111nrh0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E B Harris Electric Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/defz014n9g249\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star California II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/deg4nk3p6y0nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowling Green Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dege8yg8bzgcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Midway Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/degplme3r4176\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/deh1z2bevky27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (SD)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dejkexwy5ntnb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/del98pg54we66\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colby City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dem8fk0w3srl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/demf52h7kmte3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John S Rainey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/demg83try44p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cosumnes\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dengvrfsd01g9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holcomb\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/denhdmry9fkkg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairfax Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dev1wepbwhwvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Georgia-Pacific Cedar Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dewlng25lhwx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df1c4d7r17qj3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Feeder Dam Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df2jjkp4yj911\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df2mp4r9yk71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df5kx9de0egy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exelon LaPorte Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df71j4m242mzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df78k13bmsvn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Battleground\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/df8b41tz8r8y7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H Allen Franklin Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfdd6s1el0r0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CPV Towantic Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfdrlb374krk2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kendall County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dff3p4981w163\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoot Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfjhklzdsgl8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Silver State Solar Power South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfm77blym6nhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfmm8hscpme3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lumberton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfp7h3fyblt44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PA Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfpywkk7shlf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mill Seat Renewable Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfrx9gjp9l7fg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warren\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dfsql8743pbrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Fernando\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg0t9k5453bv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterloo Lundquist\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg18yxvrsb2vg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehouse Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg4mcbqd438y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Theresa Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg4nxx8qmp3kb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Sunlight 300, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg65h1wv0glq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg781g2rvxc7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kamin LLC Wrens Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dg9bfby15v053\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meade\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgb80yey6k9t8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elwood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgbdbv4fkxmw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tesoro SLC Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgdvnfr72yhc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CBS Studio Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgdvyvn17jmhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgg6jqtfgrg96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westend Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgjvvhz2ltpx3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fort Gibson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgkp1mjg1t7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delano\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgkwwjem8fmbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stony Brook\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dglgl5wyrgyh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dell Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgmq41bd993kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Solar Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgmvweg942lx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NAEA Ocean Peaking Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgrkpfj8p0ye9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Allen (HI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgttcyhq2pdq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kleen Energy Systems Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgtyq5pwjx549\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pittsfield Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgwk2gejeck33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geysers Unit 5-20\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgxgqltlvxef7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fredonia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgxtj90zz2551\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Loop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dgxzl9pysbsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loess Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh1ns8wdm4rmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lilly Technical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh2j4q5zncz34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Texas Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh36qdltk9zg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Covert Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh4sgx963sqe7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AES Redondo Beach LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh5p41wv6wd23\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PYCO Industries, Inc. Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh80cj0fhcke2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Logan Martin Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh8xr8t9jl0mb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dh995ck45p1b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowerman Power LFG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhdcw84mk52d6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dheh25rqy46y6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summit Farms Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhhedh9y0rgy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ubly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhhphbyrewjz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"D G Hunter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhk32ez43e4y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Support Services Center Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhmbjfmzebqfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Murray Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhmpt2wrrwl27\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edgecombe Genco LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhns4h4ext4g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows PH\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhplbtw48jzyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhqrj1sxrrt64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Scandia Community Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhrp7mm71xdw7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhtjtd3f9l7f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Colorado\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhtzsmhd65el5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nucla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhxtypghypk4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowling Green Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhydj7qw5vtpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenfield Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dhyg5sfz5phv2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dj1w0g54c5t8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salem Harbor Station NGCC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dj4fk7crveb65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clear Spring Ranch PV Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dj4nd8xqdzx75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Thorne Bay Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dj7kjxjhf1vwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dj7nh58c2qyx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Rensselaer Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dj9mxe68dm74g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Axiall Plaquemine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djccyhy55qlkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HMP&L Station Two Henderson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djcq2vvfmrwx8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"491 E 48th Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djfbws2x9zzfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Redlands Water & Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djfz3l9cjlenh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Star North Carolina II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djgv5y28qs3t1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SCA Cogen 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djkmys2flpwcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djm17l7rmhdyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Balch 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djngp0ztptre6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Battle Creek Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djqx2zp7estn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djv532k4mrnj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoffer Plastics\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djw8ztgfhstv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lansing BWL REO Town Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djz3eytl300v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #42\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/djzpehglzfwqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Burlington (CO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dk23vstb0y7x4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CNN Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dk2p9l3l8x1b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CSD 2 - Heritage High\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dk3r9y98cvw4d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pacolet Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dk541sls5gvyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Superior Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dk6v3dx37v002\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Portable Generator 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dk9gj162yb6l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland Center Renewable Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkbjjvl99vr41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenland Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkcdhxn4tt7g4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hewlett-Packard (HP) - Andover, MA\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkg46sbh3x14d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upriver Dam Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkjpdgtvtmte2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Balsam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkm0w4n62ml0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valentine Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkm61eyjg1c6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeport McMoRan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkmtdgvknwvh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norther Tier Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkr993x9n5g16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Backus Microgrid Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dktrvf9n65hc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodland Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dkzdjzxflwt6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Storm Lake 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl3552k854zed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl3b4xmygrxw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Leaf Solar XXVII LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl5mrnjpgv1tg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrenceburg Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl6nnps1q3hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Creek 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl74x9c56g999\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trans-Jordan Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl8f0p610h6y7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dl9gfxhbtvhz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crystal Lake 3 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlcbb3z23p515\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Superior Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlde48jqvwwe7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gardners Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlh6d50l0njd3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ralston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlhvrmtxe7gc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlj89x95ktvd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ross\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dljffl8339j9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antelope Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dljgry7ymllc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlkylgjwl281c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cardinal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dllq53z7hxxrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dllr1xb0ymmvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Ninth Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlnq0mf030773\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabetha Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlp6fhv8g2qp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Echo Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlvyx3scpwl14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middle Fork Irrigation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlwdqlj2871yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Home Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlwnr512xk0bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CITGO Refinery Powerhouse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlymsgt9e6cl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Reach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dlz9m6jcncmk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vinton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm1dntgw4qwtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jay County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm222vflq8zm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Regeneron Pharmaceuticals Inc.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm2ls9w0s938c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West 41st Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm4clx5bs9x12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry L. Oswald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm4cy2w9dq9r5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm5fp1x5jc4cc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genoa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm5sbk9pyv7xc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fisk Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm6mkfbbslm28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm7pzb99wb646\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carson Ice-Gen Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm7s4chdq3g93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BentonSun LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dm93vhsl70x3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amana Society Service Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmbkl39epthy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Canyon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmcs4tn98lyp6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmddyc7k8jmt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmeh37l68wsvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Framingham State University Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmf9824841jb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Diesel Generation Unit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmg4m0cnnwpm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmll9cgqwe6m6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arndt Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmmfd43bgkl99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmredq4wm5sxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lemolo 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmrh3sjslz3cd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elwood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmsmh82cfxcqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loyola University Health Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmtl60cm10cj\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jarvis Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmw9p2r9pjh63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enoree Phase II Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dmy84ks1rjdl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Twin Bridges LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn0pm49d00c3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FirstEnergy Harrison Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn1z8sxdmc9t\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oak Ridge LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn2p9s0tqkpg1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Threemile Digester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn2spwed0wxpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Baytown Turbine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn2w1tmzjx16c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trego\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn3pfylxscy73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederic Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn6mfeqh4vwgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chesterfield Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn75f6hneq3p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Charles Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dn9w4swlcs1w7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DGS Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnclz3pqmx908\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnd643gpp0018\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zeeland Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dneqn02t6sbwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnf24e95js1n8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MPEA Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnfjxkq4b2nk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fore River Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnflpzvffr46d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Venice Resources Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dng70xtxd0ynd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Two Pine Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dngqnr4f66w1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Drop 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnhypvc18wg8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sentinel Energy Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnjtzvxdstwv8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnknjxs7x43q7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9502 Eaton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnmfd0493c7rg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithland Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnnght15yvzgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bladenboro Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnnjwq0bvjs32\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SolaireHolman Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnpzybq6sn4kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blundell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnqbgw6hbkfjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oswego Harbor Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnt4cmb854fwf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oneida - South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dntj4l1ls5gtg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9502 Eaton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dntr2e8yx4jsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sam Bertron\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnvkvvcq0y4ec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEPV 18\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnwjc5v18p8d5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lochmere Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnwnpj6r7n7v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buck\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dnyflp93k23d5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dp02dc8266y6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pfizer Groton Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dp0rs43hsgq89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Halifax\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dp5klq4ggkx82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southeast Kern River Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dp60qxhq0e7g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chowchilla II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dp8yxtnxpeqwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairbanks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpd0mh74s4t8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"C D McIntosh Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpfescg67qfng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eielson AFB Central Heat & Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpg61fh18t63c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jesup Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpgts6wmgxm7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sanford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpgx9fgw8hvp9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lundy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dph58kg0cy8r2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ball Mountain Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dphlhx95rtnbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dphypd89fmt1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arpin Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpj1h3qcyd24h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mystic Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpjw3phhs2kg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montgomery County Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dplm9w2hyl3vd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Klamath Expansion Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpp2xs92cbdd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Innovative Solar 31\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dprrnwjjm9l78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley (CA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpxmvwtemegvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpine Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpxvp1kndyfp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dpyt3zkymlnpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"California Valley Solar Ranch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq19n8wfqcc49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Summer North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq1n3crz2slv5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls River Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq1q37qvq5702\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Mesa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq3p9s7zwsry5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Griffith Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq3qerl5dkxm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wilson Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq5rfb65sxcsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS CMS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq79njrjn6qnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Apex Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dq8w3e7fnhnm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqcpwcs038q39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sidney (OH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqcrw18tpvq3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Groton Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqd4nw25c54k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lyonsdale Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqfexmk6hkcd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ninth Street Hydropower Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqm6sw56v8k8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine Windpark Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqnqjq9cpewb7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lockwood Hydroelectric Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqpc55zswqgeb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Commonwealth Chesapeake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqq27bpxl17j2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ponton Diesel Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqqql6t12eweb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Barrett Farm Solar - Phase I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqrd9lpfjfqmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Bay Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqs88v583r6fh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqsjc6hley5x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Combustion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqsmns4vxlw1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqtwwynm952m3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Novel - OYA of Mapleton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqv989p3c3hv7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Lahontan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqvstnvxxmy7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"APP Prune A-D\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqx5f0mvrqly5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"VMEA 1 Credit Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dqz265vwe9mzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Peach Bottom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dr0n0p574txbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Collinwood BioEnergy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dr13ejbbzpv8c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Washington Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dr3gttkqsvbd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ellinwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dr4ccg1plmj5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor Farms Salinas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dr5qyt735mde7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dr8xkfn6r1jl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Packaging of America Tomahawk Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drb64kkgngvth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arnold\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drb83pr6vvcb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solano County Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drb8yxtz1m9b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Metro Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drfex6bnbslr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hardin County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drgyzzmegwzyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotzebue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drj5ee5f6bbsg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Phelps Dodge Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drkjrzxyp40b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Prairie View I & II LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drm0ccb8lnlh3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drmnvykzfw3qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drp8dw7nygy74\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mora\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drpthe1yvs9nb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 3032 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drpzgmcht89m5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chief Joseph\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drrp3fl8zfq3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drsdr27741p9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Theresa Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drt46c44ehchh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lyons Falls Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/drx2gmkxejrpc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dry8m2h1nktpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salmon Falls Wind Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds1m7kfbk53s1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrence Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds2f8j3nxvfr5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ottawa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds2kc0m6fmt7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dresden Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds2tk64f8vx26\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clinton LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds3fnldygfqp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"System Control Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds3p5p1bxtbz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watts Bar Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds3vx3z1yn2m4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds66vrv4pz8k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Utility Plants Section\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ds7189em8emdf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsc5mxc1f7dn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsccxnm809cl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manitowoc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsckj8pd7p8e1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Flint River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsez1c5n293r6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Neches Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsfbsxz9c6e53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Knight Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsg1lhwkt1jzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsgsfpt73qxjd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pacific Ethanol Stockton Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsk0feyll2rh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Darby Power, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsljfhb5p0pef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsls0wc17n5g2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McClure Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsnw92jst27ec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coopersville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dspv7m9gfc597\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easthampton Landfill-City of Easthampton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsqmtc0f6b9xd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winnebago County Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dss4wxhc1mc1f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Waconia IV Community Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dswe9w01hwrdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ottawa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsx221mgyyjb4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rising Tree Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dsxde0jxrb027\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Granite City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt0vyp57t27zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taft 26C Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt0zjg60q18ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"The Bank of New York\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt1wk092mg566\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Titus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt2cjlemndxvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt46tkx2nx4l6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AEP Bluffton NaS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt4jfsd9mr58f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sun Farm V, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt57g37k5qjnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt5rh8vwpz948\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fennimore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt5vlzb4nd42c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Safe Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt640ek79m987\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Triton East and West Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dt8drtpctgp54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Harper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dthwp620zycg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gibson City Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtks9qvm98vm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Oklahoma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtmt2wml44zg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kent County Wastewater Treatment Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtnqk29nb03r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SAS Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtp2sv247jgbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cape Cod Air Force Station - 6 SWS\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtq0nbrj1nz07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Esteros Critical Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtsls9k2kkmp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #17\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtv8g3q6d3db6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtw1c58vjhslg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marsh Hill Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtwwcz161s6y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greers Ferry Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dty11rkfyrbm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dtzm23ctqd0t4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dv0cdsvmbep29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saluda Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dv1g1mv4f7l35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Unionville Hydro Project 2499 NY\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dv2psm7brdpmb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DFW Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dv3e38xhygvw2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingdom Community Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dv90czz8b8ds7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mira Loma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dv921qhnq0nkf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvdzq99fb4h9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"EC&R Panther Creek Wind Farm I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dve75enl485s6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northwest Regional\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvhbe0gx5zgmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Montour\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvhlmhynyp0y5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berkeley County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvhme7g59tbg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation Wal-Mart Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvhytvp4kj0p9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Horn Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvlg5c90l78c7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferies\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvm5dc7dkrjq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CMEEC - Norwich Stott St Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvmw6h88xpms6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Combustion Turbine Project No 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvpq49zhxqbx7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Engineered Carbons Borger Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvtfrf38nee75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Antanavica Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvxhhf1pr9pf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shannon Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvy49e2bgn548\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Angoon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dvzfr4skwx575\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spring Creek Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dw1mw2dw8eqjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HTW Plant 303 COGEN\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dw6w547je9g09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Paloma Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dw7pgclm737t3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RE Victor Phelan Solar One LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dw7s9gtn01htf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Ana 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwb359zn0w7j7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dickerson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwdc3jpvc0gc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cohalan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwebcgxhsks14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant No 1 Orange County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwh11g74wlwe1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alakanuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwj2dr9szv4bh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwkb1wrv7vsq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roundtop\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwlerkr2qd5xh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Minnie Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwn5kbptmhm5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Duke Building 87\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwnd5v1prq4d2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson County Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dws931vc2jmv1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pelican\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwtp6tk3l9bm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kalaeloa Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwvhqg0vs62sf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lewis Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwvt0nnw71k1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverwood International Macon Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwvzvp7kj4z67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaheawa Wind Power II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dwz1n7nnkqnl6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RCWD PV Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx086cx1p082h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anson Abenaki Hydros\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx0b49e6zq1kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Comerford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx2jbx8ncxvs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx37r412je0e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherwood H Smith Jr Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx3bdxgn61p09\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waterbury 22\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx4kk88jenh83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elephant Butte\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx52cfwt7kyd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CDCR (CA) - Corcoran State Prison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx6ykhs5ne9r1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RJC II Community Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx75zszqlg0th\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mid-Set Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx86pvf1md7dg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H L Spurlock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dx8pz0vvf3qmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IMPA Pendleton Solar Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxb582q4zyhy8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cos Cob\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxckkmve9clpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weiss Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxcvgd8h2bsqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springhill Gas Recovery Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxd144qf8pp53\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Ferris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxfp8sel1jbxc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plymouth State College Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxj4p6yyypcy6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"T H Wharton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxjst023xtbt7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carroll County Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxpcdrnml273\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxplgetl2l6rf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxpx1hpqhxl3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plant X\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxq3rslsy82qf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrence County Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxrf5cr9ck6d5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoag Hospital Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxsqm6hq8twm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clark (NVE)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxt51c6dlye12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Michigan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxtxxt56gekgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Welsh\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxv06shrs78fc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Cottonwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxvk99tfwvyzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Gen 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxx07c4rqj575\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Painesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxx6fcry6nysh\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOVa4AQAAAP//AQAA//8sELiqUQAAAA==\"}"                                                                                    
#> [19] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Narrows Gas Turbines Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxx79z0j136f6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodhull Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxytqwlvhep62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sentinel Energy Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dxzqfzw9ck3v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Countyside Genco LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dy088m3j471ff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kennett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dy3rvfnljd055\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turnkey Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dy67ldbj2c5d1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haley Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dycnk02kj6g69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coit GT\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dye76eh02dcqd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CCSU Co-Gen-STBY Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyfve0k4w1q2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agrium Kenai Nitrogen Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyhwn9ree6x29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western 102 Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyjhre8x0d04g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miami Fort\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyjycwjq620g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yankee Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dylbeyj67pep6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dym9y7hzktqt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pittsfield 44 - M&W PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dymbqft300dq3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BWC Swan Pond River CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dynnst1rwblg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springdale 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyqk4dszdgrbd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rhinelander Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyrfm12rxmrg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wanship\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dyvt392kcx531\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Langley Gulch Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dz2bh9l4cp3r3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Facebook 2 Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dz45j99k79z7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New Roads\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dz4yvs71574y8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dz59c538zsfr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anadarko Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzbhmrwyt4tth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edgerton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzcjndkcjy0v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hutchinson Plant #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzh075h6m83bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grays Harbor Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzjcctwdcgy46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Waconia Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzjkf8g4s014b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bear Creek Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzjr573cs1rd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzl6qpdh27l0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Noblesville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dznfwdg4wtjvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern Bell Telephone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzqxfqpesxmk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caribou 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzrb5pjd629h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzrm2fq14595g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Provo Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzrqmhzk9f3q4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenwood Landing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzv8q02wjhwr\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westward Seafoods\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzv93h47h3bt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stark\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/dzy9lkmlv1nx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e00flddr89yn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Polk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e03gx118qv9zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0418r39tzmn4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e05bj1g998kk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mahoning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e061pp9ml0ts\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinellas County Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e073dfc7lzx85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brandon Shores\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0fjxpfccf75\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pearsall\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0r3f6sf5ej49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jim Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0v40zf627lcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Webster City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0vefe0d0jq7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coopersville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0vesx6z90xs5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elkhorn Valley Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0vngyvks8m1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paynesville Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0x32fm8xtmxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valencia Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e0xb0zzm8w5j8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e11lmbjpgq5b1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brown Station Road Plant I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e124rb0vhmj47\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vasco Winds\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e13dd0q6q3np9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waihonu North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e13mp50mhlwhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneseo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e163c04e8g6h7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moncure Farm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e17bsx7z5cxjc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lost Pines 1 Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e17nf4qkwme65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Point Comfort Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e19hn23whw4bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Watts Bar Nuclear Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e19s4kfj0dsk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stairs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1bfb4m2gcxm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1hv2g15l46j1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1jfydnrclnm4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lilliwaup Falls Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1pjev5w43ys4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Portland (PA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1pqls4nzx5w1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OCI Alamo Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1qm2stjvd2s2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferson Street Substation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1qtgwfvdz4yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blenheim Gilboa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1rjj8fdpwcrb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1s17r735qrq6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoag Hospital Cogen Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1v61dbm7c0w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1wsxl6rprzdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sartell Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e1ys9tdll7j1c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brea Expansion Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e232jnqp727zf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside RWQCP Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e23ky0q0vswvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meadow Lake Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e249w74670rgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greensville County Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e25bc5rct1jk1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"French Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e26md6lk0f1vh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawnee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e28hn3mzzst76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cimarron Wind Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2bn1g757fr82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St. Michael\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2c4e4je85628\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Indiana University of Pennsylvania\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2c55ve21vc99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canis Minor Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2cne252kyt6c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell Downtown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2cqbc7fc5g4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dinuba Wastewater Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2d0bec4rr2y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Easton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2d243bhhrwhf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maquoketa 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2gd5zq7nfvn1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coachella\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2gwtl5rqv3p3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anheuser-Busch St Louis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2k36pkkk9p7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Washington Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2k9jx6sd0drc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E D Edwards\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2l7thq2c6t5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2snghqdttfp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holdrege Solar Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2stk59te5rvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Linden Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2vstwysq8b18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry Truman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2w7t6bsphcyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2wdsrwct3f4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonny Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2wemxlnkpt16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Streator Cayuga Ridge South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2wm827gxbvp2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tehachapi Wind Resource II\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2x47y8c8shyg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"New York University Central Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2xbytqy2f0m8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pinckneyville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e2zhj83bnesq\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e30k1gx4zs0j5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Ninth Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e320en7rtdzg8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adair Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e32h9mtv1l4rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chicago Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e357sqntewv83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allenwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e35ttt7qbeekd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nantucket\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e35zl8wm9nvhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM San Diego-North City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e37032dxl6rrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mars Snackfood US\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e37nv3419h8bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Total Energy Facilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3blh5w2df9y4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Courtenay Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3bnxrt5y70d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"James River Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3f6j6fl02ct5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #23\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3k08fqy6w1hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris (KY)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3km0met7999\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bennetts Bridge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3lvp92vlswh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SPS2 Jal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e3qbk4nlxcxh4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eel Weir\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e40kf85ky2f25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jacob Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e44z8d1mn0w7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky River (CT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4566fnrw7fs7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hooper Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4915phl57z69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mount Sinai Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4bj90rbs0gtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4bqrpghbekbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mayberry Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4c7fpwfq0m85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TAC-Distributed Energy Resource Int.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4cp3dzv1b644\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Mueller Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4d51pt5y1rk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geismar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4dlh3ccc8v9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4fz181ylgh63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Selkirk Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4hb5fewhz9f7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stanberry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4hnhnc32hbk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4jthzl4lmvrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pfizer Groton Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4krgerc8yj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cholla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4lb80l00vz19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cabazon Wind Partners\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4nhllhjkr8dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"AZ State University - Tempe Campus Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4pv6sdf5vd3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TalenEnergy Montour\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4t8svzydqvp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Montezuma\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4tgfw0722w3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Sierra Limited\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4w8zhmgkp1hh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4y8lzex0yzj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rocky Ford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e4yym9x53ypf3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Aera San Ardo Cogen Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e524xb274rmz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e52hv8ev8mzb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockfish Solar LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5327g1vkgjnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Jefferson City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e534w7fwbe5ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buena Vista Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e53fc5xghe737\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Faraday\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e53mvm49tjyhb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE Rochester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e547rbdgpv9x2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e558fq126fb99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Box Canyon Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e59pf1hf0lh7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e59xc9pqjnrg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Guadalupe Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5b5kvwp3yqq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Interstate Paper LLC Riceboro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5be3hn03739\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winchendon Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5bj4hq8ce4yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jersey Gardens Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5bnfz4snrdld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holcomb Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5czxdbxhll9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5dg0q2n1f8qb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5h59e8yb0ys5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5ly9y7dkl5s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carbon Limestone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5m1nxsn5zn5g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valdosta Prison\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5mftrv1q3n4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clearwater Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5p94vg6mm2v1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Landfill Gas\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5pykybj2xr83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warren F Sam Beasley Generation Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5qb18ml8cyx6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEPV Imperial Dixieland East\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5r3slsr2mte9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5s8vy2ftq4h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cargill Salt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5sb7qszb2j8d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Upson Rocky Creek Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5sqml0nvvbc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fernandina Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5vq5bn7le5nc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgeport Gas Processing Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5wf35ve2f1j3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tannery Island Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5y1mvrm9mtwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"B.R. Sartell CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5y7tfgs4rp34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cloud County Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e5y8q93d4dsh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plains End\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e60x0rpek8kj1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ples I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e62kx6b3h9h44\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jay County LFGTE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e64cb75nvrh49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e65k2gmbzbj71\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cabot Holyoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e67jn99brg461\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heber City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6cze56b0zqn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Main Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6d22flg4xll4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Schoolfield Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6g5dhgy8ysgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6gzkw3l7vcf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6h3wvpzkjh5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonneville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6khmhjm82j45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Newman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6krh5wqb8nd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"First Citizens Bank\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6pbslhqssk08\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blythe Solar II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6pp6260s8eq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6rjts55fk9z8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greater Des Moines\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6spb0kcsrkcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Swanmill Windfarm I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6sxlmkzkpm46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tesoro Kenai Cogeneration Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6tbl51xtx1v2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pawnee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6td2eebl5ccg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buchanan Generation LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6ttcwbq2cbgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"San Gabriel Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6vbk6mfdqv8g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powerton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6wdeqkl5ehl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Earth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e6wrwebr7jcr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broadway Solar Center, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e70hk2x8pcewg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"L&D Landfill Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e716hxlvv262g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e72rtzhezx1j9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e73my9mfmk1tc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Utility Plants Section\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e74dzrysyd5e5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harding Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e75bjw53jm8db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coolidge Solar 1, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e75tqk82205g1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fisk Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e78550b9n808f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Royal Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e78trrw8lqxm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jeffrey Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e79lbxfk4zlgc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Pine Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7h4p5lldxwvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kern River 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7jnb2n5jb1wg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rumford Falls Hydro Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7qnlc6kcxpd9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelby North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7stxbx234651\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Litchfield\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7t18y6x24c42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S C Moore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7trsrgc3mvcb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Asheville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7w8xjcwbb218\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lee Combined Cycle Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7xv73tlcqc3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chisago Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e7zepkrztkpwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edgewood Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e80d43qvyjyqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fox Metro Water Reclamation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e80gpk25sb8yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southeast Resource Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e812w4x6g6es9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sissonville Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e81q67y86dk83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dane County Landfill #2 Rodefeld\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e82f2hrer9635\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Wing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e83jeksxe2vbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Liberty Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e84ntncmdp6j\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brownsville Peaking Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e852q03nw7l04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e85fxrehsg0v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brandy Branch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e87vfz9bh56d1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arcadia Electric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e88vk49f27pyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Proctor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e896j1y953pcf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monterey Diesel Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e89g95vfft8zd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Leo Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8d1bzdrx3zgh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rock Creek Dairy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8d36ryf684vb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sand Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8f62r98qp3td\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8f7bbggq26nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #44\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8fs255lt1y17\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cataract Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8glwzvh99b9b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bakersfield College Solar 01\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8hgds0hbtwph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rumford Power, Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8l3v07f1e655\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Big Creek 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8n7ekzsw5xd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Salem Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8nzhwcrztv3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunrise Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8s8qyzw1b4m7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bennett Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8t6bh3jvsy06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Princeton (MN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8tgt15gvdsnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8w2wqzmlzz96\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paddys Run\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8wvlrhbnpr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crestwood Solar Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e8xe38b9dpttb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chanute 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e90ppe2ewht14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Muck Valley Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e90wqdm6lvmeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Island Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e90xbeqtly0f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wright Cuddyer CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e93560t96wq7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Utility Venture Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e94beblhg94k6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Church Hill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e94t35lebtlz\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleveland Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e96b3qdcnzvbb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Plata\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9b582d8s1cm\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoover Dam (AZ)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9d317d00h2rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Long Beach Generation LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9dyrrjm66kf9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ruxton Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9f7fpfg6br21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trans-Jordan Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9gjmknqfmjh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bishop Creek 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9hmcmrezetcg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Butler Municipal Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9j0knk07mjk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keystone Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9k7qrq6y9by\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mulberry Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9kf5e83s3829\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Formosa Utility Venture Ltd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9ly3w9qmg794\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MU Combined Heat and Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9mcqpnf4ck8f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9t3v1kb5d1jg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Earth\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9thnc05g79x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9vb9b02qtv1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holcomb Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9vp2k62exjeh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Owyhee Dam Power Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9wxb62v6yl85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9wzyhdw1mesh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/e9yhl9s7c0549\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eb0y26th7k4e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pfizer Groton Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eb584y3zr0jqg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glenarm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eb887qmlenj3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Traer Main\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebcksch0575e7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Primghar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebfwz7jvd7y0g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rokeby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebgp9xbpnbc9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Valley High School Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebjdzvk7mwmg9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD0201 Ingredion\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebkmxr9wj8zv3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DSM Pharmaceuticals\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebkn6hj2b2zcc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cove Point LNG Terminal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eblwpf7fx053h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buckeye Florida LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eblzjecz93lq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebnnsdrjbwzr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Doswell Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebp0b8exde5q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ellerbe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebpgz4km4t902\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Verso Paper Quinnesec Mich Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebpmss7pyh2ch\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"UMCP CHP Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebsec3f814vsd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelby, NC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebv5cgll3wwc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hanford 1 and 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebvd44bzgxwm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Woodruff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebxeldbdvqj29\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blackstone/Tupperware\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebxrbgfb7h3db\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Constellation New Energy Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebzcdh1bvh26c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Delaware South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ebzps9kv0jp9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ABEC Bidart-Old River LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec14x64hg4m2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec1g3s25zww62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dansby\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec3erwq37f2rg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ZV Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec41wxh4rd0q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverbend Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec5bgz6p7xd45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Farm Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec5sr4w2ckcmf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colorado Energy Nations Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ec6p7c36vm1pc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Menominee Mill Marinette\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecb3cd8ksnvnh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lieberman\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecbrl119dhlg7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beacon Solar Plant Site 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecfzl2cgvb1x3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IKEA Savannah 490\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecgl85l8frzc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Broad River Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ech2jsnhg5k67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanai Solar-Electric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eckrnmxe8w2d5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NextEra-Blackwell Wind, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecktczbqvkwh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Foundation IE\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecndqgmqb247h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marceline\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecnfsd52yzbtb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hungry Horse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecqw9mcgkvd0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecrh92x600rm8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J&A-Santa Maria II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecrw1vn8xkjx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caterpillar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecycnj4ms4nz3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Packaging Corp of America\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ecz0tm9z70jl2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Elbow Creek Energy Storage Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed04b42zrkfs3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Croton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed3e08h1mttq4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gemini Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed3p0ztvztp91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alliant SBD 9106 Rockwell CR\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed4jfy3e8be55\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed5hkjwz94t12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jesup Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed7c64w07t9pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vienna Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ed7qet7k3lhlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edbmb64wde054\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Queens Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edck94mv71963\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Notch Cliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eddmsn9kpwxfc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain View\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edkc0qpbtky39\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grant County Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edm9nst8m1tvh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winyah\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edskq9yp1svz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"East Acres Solar NG, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edsyhy2fgn809\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Augusta Electric Plant No 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edtgczfkrjct1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dam No. 4 Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edv4gr0fyyqk9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millcreek Power Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edwflhn0rbm25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roquette America\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/edxwg1fvx8h2d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kettle Falls Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee00wybbgv7w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee09yt3d60b7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lilliwaup Falls Generating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee0c3zmfvbmjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exelon LaPorte Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee1k4g7lcxd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee2tcwwkgndzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee60rybwme779\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haiwee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee7dz0qdbj909\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Overlook Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee7lrb86wcfsf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Holtsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ee9d8m2zcj6d6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Water Treatment 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eed95j4wszkj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Woodleaf\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eegs0kvh02j21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grafton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eehnmetg07hk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FPL Energy Story Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eek93r63mrml7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CM48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eeq3hxvzv4eh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dion R Holm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eerp1x0me9tj4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carstensen Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eerv1bznnkm67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NedPower Mount Storm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eesgf8q4wkf04\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elm Creek Wind LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eev3mbt9g5z0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martinsville LFG Generator\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eextw6dm5le14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dartmouth II Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eeyqqeydfpzc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dunlap TP 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef07pdwfn223f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"David City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef1psb8zds8yh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Vado Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef28nj3s7f0rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ceredo Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef5bqqhzp3z7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef7c1472ez7wd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef7dwmxzg9776\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"VMEA Peaking Gen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef7wfqdednnz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherman Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ef8y6b09c3c7b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delray\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efelgy8g1c666\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Geneva\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efevrj941l3k7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coronal Lost Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/effbkgpsmb7ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shawmut\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efg7d9exfjst6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ponnequin Phase 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efq839r4bxp3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Townsend Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efq9fw1k7v8d9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S W Bailey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efs9v4q60xk19\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Keller Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eftgq5cm0x9yc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"State Farm Insur Support Center Central\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efww4sw06g3m4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Farmersville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efxdqh8shvfcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Jefferson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efxwjl98d3gx\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Consumer Operations LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efxyyb5ndjd4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Escalante Solar II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/efzbtqyxj4rzb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LaSalle Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg02tc1y62fm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg0t9s80d7fl\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jersey Holdings\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg1h3h544fcxh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palo Duro Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg3qwjz10ybhc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Exelon Solar Chicago\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg53q76djmfq1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bronx Zoo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg5r157f6nrpb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Basin Creek Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg5v7qkyfgs18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Victor J Daniel Jr\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg5zvd0jk3q12\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"El Nido Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg611vmvm4pd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lodi Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg6bx9v9y5slh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sumpter Energy Associates\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg6ktpnrmczf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genentech-Oceanside\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg8jyp57lx5k2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kings Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eg93k45pv5kd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John Day\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egbfz8d8mdm87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jim Bridger\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egdbh5fmkh886\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caterpillar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egdq8pjlpshk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Delano Land 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eghl8sj3j73f8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mid-Georgia Cogeneration Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egjddh5bc23c4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ArcelorMittal Burns Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egjjpvrhfgfjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walnut Creek Energy Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egjvkmx0rk591\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SEGS VIII\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egmtv4dcv72v8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egqwn07pf2qq5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saguaro Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egr8ltb9gclyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Ana 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egx5g1x52e2g5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Linden Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/egxl55l696xfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bison 3 Wind Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eh00vk5tmyqv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keys Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eh0gqkcn87rk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Rouge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eh0xgfm04bsz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pensacola\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eh3ep6n1php11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colby City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eh6351l9v7db2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ottawa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehbprkj550016\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kenyon Municipal\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehbrkv9z2evx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glen Ferris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehdt434hnqw59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millersville LFG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eheczjk05v177\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cedar Hills\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehgxewykzgz11\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kettering Solar 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehkp6bpjs9bd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marshall Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehnewkg5gz73f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Point, Pump Station Rd\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehnkbe3gpljb2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Charles City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehr3hyptx4fv4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheeler Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehvgg2jt1c6c7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ogdensburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ehzn5qv03p4lb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Santa Cruz Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej0bzzvmgxqsb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Linde Wilmington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej11w5w2enc6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej234xm33qc3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Buxton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej5hs22klfrr3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warner Lambert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej5srrzhk35pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Roosevelt Biogas 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej7n48kw4q5qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 1656 McCarthy, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej84hv8kqrp41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenville Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ej8s3yefb49sh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CM48\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejf1prc8jwesc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Loraine County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejh5h6jmykv22\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Luther College Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejj6me9tz0bw5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Norwalk Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejjehqmvllpn6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lamar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejjnt9gs66sg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Russell City Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejjphdfhv0j4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camp Grove Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejm8y9kx63916\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McGrath Peaker\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejm9jkg4jez84\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sycamore Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejnfzqjz10lc8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Warner Lambert\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejrtnxfbr1pd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Windom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejs283qhzk4s8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"PSEG Burlington Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejsw8ptdmqjs\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dillon Hydro Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejt29y6mfcsk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ejty4xjyw1x35\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gaviota Oil Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ek390b74m7qm6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Milford Solar Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ek76pg67z9f1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Division 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ek8kpcf778xt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherokee Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekc23nrzet1n7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wayne Solar II LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekc49yc9b9665\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tolk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekd14bg04qlw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"R M Schahfer\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekfzf3ftd36n7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amalgamated Sugar Twin Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekhnem5l1gbfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Empire Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekk0ml3pwndm5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Mills Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekk6r2wz7ct64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University of Notre Dame\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekkplg5gspl4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherokee\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eklgh36er13b6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kaiser Downey\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eknkl19qtsmt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chateaugay High Falls Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekrmps7txw4tc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winterset\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekv5mkkx71h7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Northport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekvq9e3xdg1z1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Wing Solar Energy Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekw9pv0jr8epd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Procter & Gamble Mehoopany Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ekx5jj6q5b3zc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Las Virgenes Municipal Water District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/el09zg6qp0yeg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Xcel Adams 2 Community Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/el1268jc6pk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cleary Flood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/el2m4jyb2ne9g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Industrial Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/el4t3yzwvcsvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kamin LLC Wrens Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/el6c9zj62mgxf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Strawberry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/el7wkqvngkrg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Calderwood\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elcvergq65jth\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Motiva Enterprises Port Arthur Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elgdvbzrv47b5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kennedy International Airport Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elgrqdtr81jdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archbald Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eljvcjemkyl9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panda Temple Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eljy605pd59t2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tallulah Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elngjfm2plhpd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edison Sault\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elpd9ye97fxyh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glades Pike Generation Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elt13tf6lc372\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cape Canaveral\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elv95xnh6ek28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Errol Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elvmgdmgwmw2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Verizon-Torrance\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/elvrw5sb6bj97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Hawk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em019h0gnb944\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithland Hydroelectric Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em1n97c70exrh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bud\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em2wt35x58tbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tennessee Eastman Operations\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em5fdx47w6rp1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Ox Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em6d0hsd29ke6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blooming Prairie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em6jr8gwgczed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MMSD South Shore Wastewater\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em6x1d3m8v4b3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CPV St Charles Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em7jbqswrr0h1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Boomer Lake Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em9bsnx82zer9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Star Point Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/em9s3yxqpx7f1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Agua Caliente Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emchbl9p955c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marengo Wind Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emcqbxr5dn6kd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Ridge Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emd7rcq6mg6z7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Engineered Carbons Echo Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emg3p2nn2477g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rollinsford\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emjt1v526h3rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Corning\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emkmvz98emxh2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Trimble County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emm9tpjdqvkm1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berlin Gorham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emnzyrcfdyb7f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Progress Solar II, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emr74tvhq3p21\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherwood H Smith Jr Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emt2dmme24j14\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tulloch\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emvkx1kgfmvb9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marble River Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emxbs8gnzhpzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chehalis Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/emzz141e6v3dc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greene County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en0hecyfq4q31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rockville 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en3c6rpckvg25\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John W Turk Jr Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en3hk31vl8r28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nucla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en5059jrxxl64\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pacific Rim Dairy Digester\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en5y8kr21fr4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Quinnesec Falls Hydro Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en7pel276z2xc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/en98prr445643\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Snake Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/endbv3d1ftmtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Livermore Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enegc3v187998\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Gen 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/engeq7qbgzcr9\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOeZ4AQAAAP//AQAA///wryQYUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                           
#> [20] "{\"data\":{\"PowerPlant\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"TalenEnergy Martins Creek LLC Williamsport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enhqwkjz5mjv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enl2pl3mgt9fb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edenton Generators\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enm8b52480qnc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yanceyville Farm 3, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enny8626q0k85\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mulvane 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enpkcd74v6k33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Timberline Trail Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/entljkgmzezw\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Little Falls (WA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/envbwds7k3761\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dutch Harbor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/envkc86dlsgtd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Empire Generating Co LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enw2skt0mx7dd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solon Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enwd3nhflhq88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Greenwich Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enx06836tsbl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Veseli Community Solar Garden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enybf0x41zq4f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CH Resources Syracuse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enyglqm9mlmv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onondaga County - Metro Water Board\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enyh961nyf5k1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willmar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/enzrd9q6f0j34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ontelaunee Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ep0rfd5l8zy5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bernice Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ep4nd0wjmp7kc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Louisiana Sugar Refining\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ep4s45m7f52qh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"LCEC Generation LLVC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ep62r95ms14s3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bolton Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ep7nc72be5fhh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"St Francis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epcbb48xdlss\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Marion Solar LNG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epcgmw7e1l952\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anheuser-Busch Jacksonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epd561ht2rsm3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ord\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epd567pw3rhxd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Benson City of\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epf5gnkyhhz2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Markham\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epfcp368mt9w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RJC I CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epg581kbhh7jh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epht6jz9htjm2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Meadow Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epjdvq7mmr35f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grimes Way\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epjq2bc8w2042\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Outagamie County Co-Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epk2qe8z3epqh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nickelson Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epn9zz18xs8rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Falls (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epp4wkpdc7pw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Signal Hill Generating LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eppgxrd2vd1cd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Algona\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eppkx1x444591\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Danbury Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epqb77nz7cds1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Atlantic City Convention Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eprztb3m0wzec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG Camden LLC Holtec\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eps1q34mj3m3h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brush Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epsh5fexdl1kf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Diamond Valley Lake\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epvc4drpmzd67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wayne County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epw8ydg7np9hc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carver Gladden CSG\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epwexhjkx00z9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keen Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epwlczt21nhtc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Altamont\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epwv3sn89bjrg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Country Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/epyyzsm8thb5b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Miki Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq10qg43tpqd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ABC Coke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq18sjqmby1w5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bolthouse S&P and Rowen Farms Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq2e42641ekk5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin Limestone Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq4gmcsd2sw6d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"NRG Sterlington Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq4q5l74ng5k7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Candace Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq5wrr6pfkf76\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq6dhhjqymg58\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa Lakes Superior Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq8cyp3qv47g5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shelby, NC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq9sg4vy5px88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santolina Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq9w15n16ss3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Middlesex 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eq9y7erk590b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa State University\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqe91rpnfqyd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Basin Creek Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqetm3g0hpd59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jones Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqfgyrwzbrbr4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenville Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqkpq9t942fl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland County Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqlxjypee6hvc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frank M Tait\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqmcs5q46tf91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FPL Energy Montezuma Winds LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqmkv0cqkc50g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jasper\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqqv28xdcyxxg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sinclair Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqsdsn6y3vf0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southeast Chicago Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqvwrbt124we8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shiloh IV Wind Project LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqvy1xfljy9s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqy4186gtqewc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S O Purdom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqyfnq3lhw50c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jackson Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eqyzyhpdh19k\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salmon Diesel\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er01wc760pqlb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goodman Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er0khw4c37r8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Archer Daniels Midland Cedar Rapids\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er13hxmedv875\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Childrens Hospital\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er1wslwj59qhd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elmwood Park Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er242z4x6ydj8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Mesa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er2fxy92g52sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Station H\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er2xbc0rp1dl3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pastoria Energy Facility, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er330vtxhrxq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Rita Jail Fuel Cell\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er4f6tn22y4g6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ogdensburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er5227ersch16\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brunswick Cellulose\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er5xjz02m31v7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chaffee Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er6c1s07cze5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pocahontas Prairie Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er6ehxnbq8kr6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Houston Chemical Complex Battleground\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er7k2vhefgqzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Camp Reed\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/er84twlpw48ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverwood International Macon Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erb4v2blp746d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Handsome Lake Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erc69cvfxyl42\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sabetha Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erdl5tj00dbk3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Du Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erebdqnmqmmf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls Village\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erekbsz0nsddh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chaffey College Rancho Cucamonga Campus\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ereycg8kxy2vc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Falls City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ergd2g0t2grf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Washoe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erkbthflttb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iowa Lakes Community College Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erqpggz6mkfk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brooklyn Navy Yard Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/err001qyf7n2f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smithfield Farmland Corp Bladen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ers62w33jv9y\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DGS Central Utility Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erwcm3rs15xj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vista Energy Storage System\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/erwse4m9qpr67\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hermiston Power Partnership\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/es27lrrs8cbl5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Milford 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/es3n4vkt2j8p5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WED Coventry 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/es53mfnrx0f69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hanging Rock Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/es6v3wd2swrq8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverbend Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/es86drtw0j578\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"ExxonMobil Baytown Refinery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esb3t5zbky0ff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mystic Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esced6yz1d87\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Tule River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eschebm44hl34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bank of America Plaza\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eserntr6tht18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copper Mountain Solar 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esf04fshc6t34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esf3lwkdw5el8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elizabeth River Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esf88wt9evs63\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cayuga Operating Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esfby6yqchnl4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wicomico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eshr3fbl27403\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #16\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eskcn5z1zq91b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HGS Solar I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eskdh3fmxr4b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"H 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esl07fqxm9q6g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Glopak Solar PV Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esl9b2s2egp1d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hailesboro 4 Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esl9k8hx88t33\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esp95jjrm7nn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nebraska City # 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esspgfspt8tyc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deer Creek PV\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/estq91cd2qqw8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gallatin (TN)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/esyhe6h33dbq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Catherine\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et1y6cjb1s6c3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Freeburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et38qd57ps12b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gainey Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et38wd3cw8te3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canyon Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et5teh2b4y13d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fishing Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et6g371ht7m1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SC 1 Data Center, Phase 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et6w9jttm5981\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ironwood LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et7szgdnmdly3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Shasta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et85y7egvc77\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakefield Junction\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et9zbff817b95\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wellington 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/et9zgsbxbqw06\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"COU Solar I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etb4neysq00y\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Edward L. Addison Generating Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etdcqlxg5nrb3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Markland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etk12f10vywmc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moshier\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etm5fxcq5h187\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Syncarpha Eagle Nest\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etmc94te6by7g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Longview Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etnjsn6kxeb2c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naval Submarine Base Kings Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etnml560eky65\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Saint Marys Hospital Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etrsz974l44lh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Norway (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etts1dq593zf7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"General Mills Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etwet9ysgrjvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ottawa County Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etwqy1kebntc3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stock Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/etwwdx5bd7gn2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park North\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ev1d6hjpk3268\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin Drive\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ev1m681vpmpzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meyers Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ev2n085vthd6f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"E F Barrett\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ev4epyrems544\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spearville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ev9syjjwvd937\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kotlik\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evek4r3j3r702\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Denton Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evfh7p16bwkff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"S C Moore\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evg1gtkjy8p83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Limerick\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evgjzbh2zdcjf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Orca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evjkcz9yy5t5h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Smith (NH)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evk1yzr4p5w82\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"School Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evkn0yvpg4jvf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hunterstown Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evltdcrc8eqv1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Naknek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evlwnc5fvm3p8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Central Utility Plant at White Oak\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evmm38tj0y7s9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Salina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evmt4jzbtkxgb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stillwater B\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evmw0bbrthjf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Erie\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evndg5ynznq4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Puna Geothermal Venture I\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evnsmjqtpymz7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jim Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evpgzx7jf5vxb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Block Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evq29hh8mhzw1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #18\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evs18m24xm1pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 55 S. Market Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evsbrx8cghg73\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Rita Wind Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evse9jxtsv8hb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"King & Queen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evt7q67edwdgf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pepperell Hydro Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evtn70k36zn5c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valmont Combustion Turbine Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/evzp81xx14nt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bacliff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew159es4pz10h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seminole (FL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew1wzf6ty1ggg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairmont Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew2qdgxm6833f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fremont Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew4jxk5dkdd0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WestRock Southeast, LLC.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew671m7hc4cgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Keokuk\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew6b5k49hmvd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ridgeview\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ew9g6hv5tn409\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Heuvelton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewce68fpk9k46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sullivan (IL)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewcvjkwxv8vfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MESA 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewgk091wt4s3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"99 Islands\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewhkvwvqbfs54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Georgia Generation Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewhzdbs2sly5d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Waihonu North Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewkr5w1sz71g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wheelabrator Baltimore Refuse\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewl116cft9m4g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Morganton, Parker Road\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewnbxx5tb1wh9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sharon Spring\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewq2n2nkejvfg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Winterset\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ews0v988f7gbg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SunE CPS1 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewsv7eenchzf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Osage (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewt042r4mn5b4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shoe Creek Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewtq5dg8v77l\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hills Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewwmnxsjcwh8h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"River Rouge\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewxz3lznjngcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Claude Vandyke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ewz1gerbqmyk8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yelm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex1fm5q85zv2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carrollton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex1frqzy225zh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pennsauken Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex1r4wb71c9xb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex4xs2thsb555\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Livingston Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex6e4zf8t4qdf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Southwestern Bell Telephone\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex8cfnn023bf6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Merom\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ex8mb2hd3c57f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Robert Moses Power Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exbj4rq5095w8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oakfield Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exesqb7mmbyv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Powell Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exfqetqe7xsf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayonne Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exjlvmhd750b9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Headgate Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exkc8l8pfjx59\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haw River Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exr2whz64nlh8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay View Backup Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exwgktxnqfs54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manchief Electric Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exx5lvv5xqy0f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Los Angeles Refinery Wilmington\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exxczptx48798\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hoge Lumber\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/exyqm3xbc65w4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Creek Gas Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ey1z35x39wn62\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bristol Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ey4geesvvqqp3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushaw\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ey4yc1gbqpewf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ey6mpk7stg9v3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tuckertown Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ey7hsw71rdrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DSM Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ey9qtvdexvre6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"John R Kelly\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyb3mgn8ngbe\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bowling Green Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyen4d3njy808\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Turnkey Landfill Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyetyxzkm1ljf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clay Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyhh6ygtv6xvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pebbly Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eykt2qblrrlc9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TNSG South Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyns821rm4ncc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Western Sugar Coop- Ft Morgan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eynsj5s6x1jfb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Rinehart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyrk44f5525g8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyvrzj5ttt407\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Taylor\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyy0rdjx0cwpf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fremont Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyz4gyrl4dp54\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eckert Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eyzktmdgc098h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lawrence County Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ez2kylcmd2bw3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpaca\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezb67yhnwnl49\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mountain\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezcmmq5736jvd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eagle Point Power Generation\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezd3g8ybn7mh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Knight Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezesehleh7wb6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pennsauken Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezey8c3bwfpt3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"DG AMP Solar Orrville 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezjtdm7f86xz1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lauderdale\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezk3e8jzt9k97\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Maria LFG Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezklm5rsve867\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jamestown\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezlckbm4l7ry4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Texas City Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezndvb9nwbgz9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lake Hubbard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eznsk92cvdwd6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chouteau\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezrcpfkxhplnf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezspp1wbszjec\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Gate Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eztrvky00jt93\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cornell Geneva Solar Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezttkq3vjgtbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sunshine Gas Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/eztydcctt9wj5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Virginia Beach\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezv128n293558\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"JBER Landfill Gas Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezxlkdnr439rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Green Peter\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/ezy0z7d9kgcp8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Allegheny No. 5 Hydro Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0045tj798le8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridge Street 1 & 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f006ncze0pr45\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Chillicothe\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f024ywhjy15yb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Monroe (MO)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f02f7ft4bk4e8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Meadow\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f02p827dd0f0h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spica Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f041p22c2ls6h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f04byxjq5h6t9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"RED-Rochester, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f083rn0yjfkd4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vinton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f09rhlg29jbx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paris Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0bkx3s62sl36\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OREG 1 Inc\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0drf1jem4rb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Emerson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0f3pq53r54kh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnston LFG Turbine Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0gnltpybypn3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Babcock Solar Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0gwzhf76blw4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Blue Lake Power LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0hmlnqpcqy34\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ameresco Chicopee Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0hwp6lqwcf0d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Curtis\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0lks5svkysf1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"La Junta\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0mh3grmn1ej9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Grundy Center City Light Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0p7e7gcvzwx4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clean Energy Future-Lordstown, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0pk9zgvrrx2h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moulton Wind Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0pkkvm8qd039\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"North Pole\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0qfl6939rs2g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Goat Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0rf1h60thl3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alexander\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0rld07d30jfd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Basin Creek Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0sd287rmxmp5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Moyie Springs\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0v4sh0qypls9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amana Society Service Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0xgmj2rvyzed\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lanesville Solar RES\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f0ygzc6xrtrg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Block Island\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f13n59dkbxjd5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stevens Creek\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f13w0ctyzspng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McNary\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1429m84dbl7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Brooklyn Hospital Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f15gxtzwdrc6b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Manistique\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f16dd2h6pmb4h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Messalonskee 5\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f18kgbqxpfsp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fairbanks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1c7ybswy9fr1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tulare 1 and 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1dlgt9e2meh6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pella Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1fns2dmghp9f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Panoche Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1j4bbkb2kd46\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Paulding Wind Farm III\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1jvtn05ws6q9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Duke Building 129\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1q7q9n17e071\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Haynes Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1rvdrhbm0h3c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Westchester County Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1scydtf722wb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cimarron Bend Wind Project I, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1wqgpnlmffz8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Toksook Bay\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f1yhh7wsk6q52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Forney Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f203gl6hx6xl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Interstate\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f22m6m9tm7e9c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Copenhagen Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f24w9xxkdde91\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Century Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f26yycpbjrky1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Millers Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f286r9n0gxd18\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henry County\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f28vtlesm7rg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"BJ Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f291wy4j0fkc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Deptford Energy Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f29rk0sq5tysh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cayuga\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2dr2rkz84xr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lower Granite\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2ft5vczst5e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingston\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2g63fpbfb5rc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Anderson\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2hy6hwtx0kg2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Oleander Power Project LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2j83m0520885\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Canandaigua Solar Array\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2js137nzk4w6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hibbing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2rgr16x838v4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sterling I Wind Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2rlnqgz7dk31\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"HNL Emergency Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2ttnfp4rhg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wausau\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2w2q66cjfxr2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beaver Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2w61x1hrw27c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"West Group Data Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2xn8q1qxm6gg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Santa Ana 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f2yxhjnnn6zjb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Hills Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f30r4328d12fb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"White Bluff\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f35x50z8gcqwb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Skagway\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f375zyw5jl86b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Berkshire 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f37drnn2j21bf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Knife Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f38lv82htpfd1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Melrose 2\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f39bfxvwdq2tc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Yellowtail\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f39k2sesregb1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Fountain Valley Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3de6yh795kfh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Maalaea\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3eh7y5bqvwr7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pejepscot Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3g2te0tx2p8b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deertrack Park Gas Recovery\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3ge09ll4k656\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amelia\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3gh9fdlbmjvg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wolf Hollow I LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3hezj4h1xjh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beatrice\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3hhzxrnq98q6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Richland\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3j6pnyzpsjj6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Frederick County LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3jlwqgmqk05f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shell Chemical\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3jth52bscxcd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caldwell Wastewater Treatment Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3kcsd1m413wf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dalles Dam North Fishway Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3p9n2hx2l0xc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South District Wastewater Treatment Plt\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3q9smttpmcef\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bay View Backup Power Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3t7t8dp1xc28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Pleasant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3tr76hph7fy9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MA Military Reservation Wind Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3x83kt0pgkd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"American Crystal Sugar Moorhead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3xm6vsk5c4n3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Stage Gulch Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3xqcgeqle6h9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"McIntosh Combined Cycle Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f3ykvzsyr0ke2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ryegate Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f40cl9b0g2715\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Horse Mesa\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4133qgst1l0b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f44m905v40qd2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"TP 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f46xl65469c4c\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Union Valley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f479cv3s06x92\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakefield Utilities\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f48dgysksq1rh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Univ of Oregon Central Power Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4bmzy1j8l8z4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4bxn41rfnpz5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Augusta Electric Plant No 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4eq4gtklwr83\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Franklin Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4fxy3mm0xtvb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wansley Combined Cycle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4k5qcc80hrff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Clarkstown Landfill Solar Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4kt5gk4p2pwd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Decatur County Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4ps56wwk57y2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hamlet Generating Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4r4ygbpv48lb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Sherburne Community Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4rpc1kwpxdrd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Passaic Valley Water Commission\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4sd9m96xkq2b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alpena Cement Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4t018ey80n79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auburn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4tlrw3dk7t43\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gas Turbine (IA)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4wt9gkv6hyy4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ponca City\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f4zyqypeq4hqc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Willmar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f52v7yp05t9qg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pioneer Crossing Energy, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f54j573mkj0ng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cushman 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f550v2hv4g5ff\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"J Lamar Stall Unit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f56plnwp0b7rd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lincoln Landfill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f56wvg0hfqjs8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Four Corners Windfarm LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f578e8glwgpp\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Seneca Generation LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5bjlj86jq49b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"International Paper Texarkana Mill\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5dwg86gevzzd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cherokee Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5e2n2ev6gx3g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Amana Society Service Company\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5f16e6g6h013\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valley View Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5fk23zjz5d7d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Narrows (NC)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5lgbnt0f2772\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Gate Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5nmhml36c5dh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park South\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5r2y58thtnv6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Riverside Holyoke\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5t0c91vh6506\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bryan Peaking\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5t80x05xydq7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Vernon Boulevard\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5vc845q8e5t7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Petersburg\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5vhfck74xhrf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Belwood Farm\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5vsfjl2z0rh1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Suwannee River\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5whtv5dy1mv9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Solar Photovoltaic Project #15\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5yhvwnjwe9cf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Johnsonville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5z5s8kc863e6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iatan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f5zggwg5fkdy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greg Avenue\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f60e9844x20bg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Martin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f628j83drnss5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wells\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f62t29mfyvy07\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Zephyr Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f640bx3g5mxl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Otay Landfill Gas, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f64xp83qkrqc7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ord\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f669d09z9p59f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Intel Folsom Phase 3\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f66tevbp85d5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Spruance Genco LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f68p5t3b726cg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Malden\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f698x5390yvzf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Beloit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6bx75jgwr7x9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Weiss Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6fxz50c149v2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Enterprise Products Operating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6g8cjrw61dsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Shore Point Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6gmz9e10ykbf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Adkins Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6hbec1wvgz78\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Auglaize Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6he3t8krhgv\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"CoreSite Real Estate 3032 Coronado, L.P.\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6k144hp0q41\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Port Washington Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6nnzfshvxkw6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Optim Energy Altura Cogen LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6p0y5lxrn4cc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higginsville\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6qz9jwwtmks9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MM West Covina\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6rssr0b9y3bd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Juniper Ridge Hydroelectric Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6tbhdhel6pk7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Walters Solar (FLS 260)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6v84mr0f53h8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Superior Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f6vhy8brq7sk6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bartletts Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f728f9vkc12t6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Carlsbad Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f74vw1tgevgd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pasadena Cogeneration\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f76j1q95yrg52\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Kingfisher\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f77p7271lrf1g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Breese\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f77v4283q1417\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genesis Solar Energy Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f78pbwsr4e9z5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Great Lakes Hydro America - ME\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f798m6gemm2pd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Al Turi\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7cndrqxx2fy\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mitchell (WV)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7d0p4lb2vlzg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS C&C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7d76ht1q1583\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bayonne Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7gk6496pr7qd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry Allen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7glnj81nxsj9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Meadow Lake Wind Farm V LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7gxhkenbg7x8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"GRS C&C\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7h448tvb8hg6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elgin Energy Center LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7jnl20l54elb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Eddystone Generating Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7kbbwnpv0t37\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bearford Farm Solar Project\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7m2erqkxnj79\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Permian Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7p8eyg8hcvt5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lacomb Irrigation District\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7q4bt540b45g\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Lakeland Solar Energy LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7s60p5xjy878\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Nassau Energy Corp\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7s6xg5r035m2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Valdez\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7se4dnblcyt2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harris Hydro\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7snhxkjkt7d8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenkiller Ferry\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7t72cc62qh15\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Gastonia Prime Power Park\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7yp2lyfgm5e4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Colonie LFGTE Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f7zvp6q606gbh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hemlock Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f80rbc3wgy1ld\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"University Park Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f844p0ferhmqf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Parlin Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f85s9y2sq1vm9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soluga Farms 2 LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f86wsf1mh2hz6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"MSC Sebewaing\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f882neq0rd6f4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Urquhart\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f88wqvctkhfh7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Arba Solar, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f89r186tz9vb5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Castle Rock\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8eqd3pwnhxkb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bethlehem Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8g7np6tzc6s5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Conowingo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8n05psywwhx5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whiting\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8n1r5mxnqy5f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tenaska Central Alabama Generating Stn\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8ndc9jh0pbyf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Whitehead\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8nddscs9whd7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Buzzard Roost\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8p9p0gb52hx2\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Springer Solar 1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8rcp96frms99\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Palo Verde College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8s6jgh7zrk4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Henrico\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8sec1l2bgwng\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"South Main Street\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8wp6tk6947x7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Higley\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8xb0zb0fdycd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crawfordsville Power Plant\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8xnlr56dfzyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bridgewater Power LP\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f8yegjfdvbgyb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Alamo\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f908d20m9y4l3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Genentech Vacaville Meter #1\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f90tyl8nmz6nh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"High Dam\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f955gt2pkkzdh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Olive View Medical Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f96kfc96806y3\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Red Maple Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9d8cc4j4bxg5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jefferies\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9dtrzdzkqvf4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cholla\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9f11jf7c11mc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Harry L. Oswald\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9fe7xjybsvgg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"OSLH, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9fkbs6e699r7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Armstrong Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9fxgpzrpsx7h\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Devon Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9h9w9j1kzh56\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Caterpillar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9j0x6rmdw2y7\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"FECC Solar Benton\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9l9mlt32h1sb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crossroads Energy Center\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9lwbdcv7hvc6\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mt Wachusett Community College\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9pdjb39vcd89\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Golden Hills Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9pz4jq0qrp88\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Pastoria Energy Facility, LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9s8g2h1p0vph\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Soda\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9tqvt9sdz4j4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Ennis Power Company LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9ts6syqrpqt8\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Dixon Dairy Road Solar\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9w14jbetsm9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Mont Belvieu Cogeneration Unit\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9wwxpzxjff69\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Main Street (MI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9xhdvf1ebdl1\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Iron Gate\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/f9y9c0tzft4yf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Onslow Power Producers\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fb69lrnghdwpg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Tom G Smith\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fb6ptvgknjdlf\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bonny Eagle\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fb7ccml7yl7mc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Greenport\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fb7z94k7lj06b\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Deerfield 4\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fb9bp8yh5emzh\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Columbia (WI)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbbxmz96xb77f\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hopkins Ridge Wind\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbcn6jb1f94kg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Baldwin Energy Complex\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbd6denss5gdd\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Plainview Muncipal Power\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbkd349tskxdg\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Coram Energy LLC (ECT)\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbklv2nmgj725\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cadillac Renewable Energy\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fblxqppbr0223\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"SDCWA - Twin Oaks\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbmcslp8empg4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Box Canyon\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbr1vfy6mlkt9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Crestwood Dothan\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbrxktkwxy3c5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Doyle Energy Facility\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbs58gljpw3k9\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Jack McDonough\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fbx84df196dsc\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"WYM 1250 Palmer LLC\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc0mh9bz3r693\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"IBM Southbury\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc21c0dcfsj9d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Cymric 6Z Cogen\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc2xd6fjk1f28\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Hadley Falls\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc3lh9f98x564\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Wappinger Falls Hydroelectric\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc7mx64s13e3d\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Bartholomew\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc7rrgl0pmch5\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Elk City Station\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fc8bknmbv00pb\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Inner Harbor East Heating\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fcdgk7wxhhlc4\",\"provenanceId\":\"dc/base/Place\"},{\"name\":\"Desert Basin\",\"types\":[\"PowerPlant\"],\"dcid\":\"dc/fcdjpxgd66shd\",\"provenanceId\":\"dc/base/Place\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOSb4AQAAAP//AQAA///lJPyzUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      

# Get a list of all existing statistical variables
dc_get_node(nodes = "StatisticalVariable", expression = "<-typeOf")
#>  [1] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Absolute Vorticity: Millibar 0.01\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.01Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.02\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.02Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.04\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.04Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.07\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.07Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.1\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.1Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.2Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.4\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.4Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 0.7\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_0.7Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 1000\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_1000Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 100\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_100Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_10Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 150\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_150Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 15\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_15Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 1\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_1Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 200\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_200Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 20\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_20Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 250\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_250Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_2Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 300\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_300Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 30\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_30Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 350\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_350Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 3\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_3Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 400\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_400Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 40\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_40Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 450\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_450Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 500\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_500Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 50\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_50Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 550\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_550Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_5Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 600\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_600Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 650\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_650Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 700\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_700Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 70\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_70Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 750\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_750Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 7\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_7Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 800\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_800Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 850\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_850Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 900\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_900Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 925\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_925Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 950\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_950Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Absolute Vorticity: Millibar 975\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AbsoluteVorticity_Place_975Millibar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Adjusted GDP Growth Rate (Quarter-over-Quarter)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Adjusted_GrowthRate_GrossDomesticProduct_EconomicActivity_QuarterOnChange\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Growth Rate Gross Domestic Product Of Economic Activity (Adjusted): Year On Change\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Adjusted_GrowthRate_GrossDomesticProduct_EconomicActivity_YearOnChange\",\"provenanceId\":\"dc/base/OECDQuarterlyGDP\"},{\"name\":\"Age-Adjusted Mortality Rate Among Persons with Diabetes Mellitus\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AgeAdjusted_Count_MortalityEvent_DiabetesMellitus_AsAFractionOf_AgeAdjusted_Count_Person_DiabetesMellitus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Age adjusted count of people with diabetes mellitus\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AgeAdjusted_Count_Person_DiabetesMellitus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 1990, highest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate1990_Max_Temperature\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006 to 2020, RCP 4.5, highest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2006To2020_Max_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006 to 2020, RCP 8.5, highest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2006To2020_Max_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006, RCP 4.5, highest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2006_Max_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006, RCP 8.5, highest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2006_Max_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015 to 2020, RCP 4.5, highest value, median across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2015To2020_Max_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015 to 2020, RCP 8.5, highest value, median across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2015To2020_Max_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015, RCP 4.5, highest value, median across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015, RCP 8.5, highest value, median across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_MedianAcrossModels_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 1990, highest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Max_Temperature\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006 to 2020, RCP 4.5, highest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006To2020_Max_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006 to 2020, RCP 8.5, highest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006To2020_Max_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006, RCP 4.5, highest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006_Max_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006, RCP 8.5, highest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006_Max_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015 to 2020, RCP 4.5, highest value, percentile 10 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015To2020_Max_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015 to 2020, RCP 8.5, highest value, percentile 10 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015To2020_Max_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015, RCP 4.5, highest value, percentile 10 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015, RCP 8.5, highest value, percentile 10 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 1990, highest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Max_Temperature\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006 to 2020, RCP 4.5, highest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006To2020_Max_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006 to 2020, RCP 8.5, highest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006To2020_Max_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006, RCP 4.5, highest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006_Max_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2006, RCP 8.5, highest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006_Max_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015 to 2020, RCP 4.5, highest value, percentile 90 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015To2020_Max_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015 to 2020, RCP 8.5, highest value, percentile 90 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015To2020_Max_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015, RCP 4.5, highest value, percentile 90 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Max temperature of place (difference relative to base date): date 2015, RCP 8.5, highest value, percentile 90 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMax_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015_Max_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 1990, lowest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate1990_Min_Temperature\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006 to 2020, RCP 4.5, lowest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2006To2020_Min_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006 to 2020, RCP 8.5, lowest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2006To2020_Min_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006, RCP 4.5, lowest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006, RCP 8.5, lowest value, median across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015 to 2020, RCP 4.5, lowest value, median across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2015To2020_Min_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015 to 2020, RCP 8.5, lowest value, median across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2015To2020_Min_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015, RCP 4.5, lowest value, median across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015, RCP 8.5, lowest value, median across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_MedianAcrossModels_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 1990, lowest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate1990_Min_Temperature\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006 to 2020, RCP 4.5, lowest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006To2020_Min_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006 to 2020, RCP 8.5, lowest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006To2020_Min_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006, RCP 4.5, lowest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006, RCP 8.5, lowest value, percentile 10 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015 to 2020, RCP 4.5, lowest value, percentile 10 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015To2020_Min_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015 to 2020, RCP 8.5, lowest value, percentile 10 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015To2020_Min_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015, RCP 4.5, lowest value, percentile 10 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015, RCP 8.5, lowest value, percentile 10 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile10AcrossModels_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 1990, lowest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate1990_Min_Temperature\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006 to 2020, RCP 4.5, lowest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006To2020_Min_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006 to 2020, RCP 8.5, lowest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006To2020_Min_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006, RCP 4.5, lowest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP45\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2006, RCP 8.5, lowest value, percentile 90 across models\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2006_Min_Temperature_RCP85\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015 to 2020, RCP 4.5, lowest value, percentile 90 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015To2020_Min_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015 to 2020, RCP 8.5, lowest value, percentile 90 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015To2020_Min_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015, RCP 4.5, lowest value, percentile 90 across models, SSP 2\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP245\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Min temperature of place (difference relative to base date): date 2015, RCP 8.5, lowest value, percentile 90 across models, SSP 5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AggregateMin_Percentile90AcrossModels_DifferenceRelativeToBaseDate2015_Min_Temperature_SSP585\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Lifetime Cancer Risk\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirPollutant_Cancer_Risk\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Hazard index of atmosphere: non carcinogenic respiratory hazard\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirPollutant_Respiratory_Hazard\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air Quality Index\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air quality index of atmosphere: carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant_CO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air quality index of atmosphere: nitrogen dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant_NO2\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air quality index of atmosphere: ozone\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant_Ozone\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air quality index of atmosphere: PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air quality index of atmosphere: PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Air quality index of atmosphere: sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AirQualityIndex_AirPollutant_SO2\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Frequency of allele: allele type A\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Allele_A_Frequency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Frequency of allele: allele type C\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Allele_C_Frequency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Frequency of allele: allele type G\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Allele_G_Frequency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Frequency of allele: allele type T\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Allele_T_Frequency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Winter Wheat Grain Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountFarmInventory_WinterWheatForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: long term external debt, new development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt interest repayment to World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor in Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor,dcid:Concessional, Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor,dcid:Concessional, Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor, concessional Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: official creditor, concessional, publicly guaranteed, multilateral, long term external debt, new development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor,dcid:Concessional, Org of Arab Petroleum Exporting Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, concessional World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, IBRD, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_IBRD_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, IBRD, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_IBRD_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, IDA all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_IDA_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, IDA World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_IDA_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOb4wAwAAAP//AQAA//9rtwC6UQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
#>  [2] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt interest repayment to official creditor in Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt interest repayment to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor in Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: official creditor, publicly guaranteed, long term external debt, new development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to official creditor, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: official creditor, publicly guaranteed, multilateral, long term external debt, new development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt interest repayment to official creditor, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_Bond_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_Bond_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_WorldBankCommercialBankAndOther_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to private creditor in Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_WorldBankCommercialBankAndOther_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_Bond_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_Bond_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: private creditor, publicly guaranteed, commercial bank, long term external debt, arab monetary fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: private creditor, publicly guaranteed, commercial bank, long term external debt, country/bgr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: private creditor, publicly guaranteed, commercial bank, long term external debt, country/civ\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: private creditor, publicly guaranteed, commercial bank, long term external debt, country/guy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: private creditor, publicly guaranteed, long term external debt, arab monetary fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: private creditor, publicly guaranteed, long term external debt, country/guy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOV6wAwAAAP//AQAA//8vLhpbUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
#>  [3] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateNonGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateNonGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt interest repayment to Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PrivateNonGuaranteed_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount interest repayment of debt: publicly guaranteed, long term external debt, new development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt interest repayment to World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountInterestRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount outstanding debt\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bangladesh.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Namibia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Niger.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOe5wAwAAAP//AQAA///zkYbpUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
#>  [4] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Long term external debt amount outstanding to Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-Children's Fund (UNICEF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt amount outstanding to World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Niger.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt amount outstanding to official creditor, concessional Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor concessional New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional UN-Children's Fund (UNICEF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, concessional World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, IBRD, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_IBRD_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, IBRD, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_IBRD_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, IDA all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_IDA_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, IDA World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_IDA_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Namibia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Niger.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt amount outstanding to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Namibia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Niger.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOS7wAwAAAP//AQAA///mGl5CUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#>  [5] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-Children's Fund (UNICEF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to official creditor, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-Children's Fund (UNICEF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt amount outstanding to official creditor, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PrivateNonGuaranteed_Bond_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PrivateNonGuaranteed_Bond_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PrivateNonGuaranteed_WorldBankCommercialBankAndOther_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to private creditor in Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PrivateNonGuaranteed_WorldBankCommercialBankAndOther_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_Bond_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_Bond_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bangladesh.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bangladesh.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal amount outstanding to private creditor in Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateNonGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateNonGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt amount outstanding to Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PrivateNonGuaranteed_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Afghanistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOY4IAwAAAP//AQAA///8kfF4UQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#>  [6] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bangladesh.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Namibia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Niger.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-Children's Fund (UNICEF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt amount outstanding to World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountOutstanding_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Long term external debt principal repayment to World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor,dcid:Concessional, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor,dcid:Concessional, Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor,dcid:Concessional, Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral long term external debt principal repayment to official creditor, concessional, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOXaIAwAAAP//AQAA//8fYxb8UQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
#>  [7] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor,dcid:Concessional, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor concessional New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, concessional, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_Concessional_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, IBRD, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_IBRD_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, IBRD, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_IBRD_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, IDA, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_IDA_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, IDA, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_IDA_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed bilateral external debt principal repayment to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Bilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor in Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to official creditor, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed multilateral long term external debt principal repayment to official creditor, World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_OfficialCreditor_PubliclyGuaranteed_Multilateral_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_Bond_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_Bond_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_WorldBankCommercialBankAndOther_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to private creditor in Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PrivateNonGuaranteed_WorldBankCommercialBankAndOther_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_Bond_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_Bond_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOdZIAwAAAP//AQAA//9h+A7bUQAAAA==\"}"
#>  [8] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_CommercialBank_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to private creditor in Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateCreditor_PubliclyGuaranteed_WorldBankOtherPrivate_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateNonGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateNonGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private non-guaranteed long term external debt principal repayment to Other Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PrivateNonGuaranteed_LongTermExternalDebt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to all lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to African Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to African Export-Import Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab African International Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab Bank for Economic Dev. in Africa (BADEA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab Fund for Economic & Social Development.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab Fund for Tech. Assist. to African Countries.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab League.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab Monetary Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Arab Towns Organization (ATO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Asian Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Asian Infrastructure Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bank for International Settlements (BIS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bolivarian Alliance for the Americas (ALBA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bondholders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Caribbean Community (CARICOM).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Caribbean Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Central American Bank for Econ. Integ. (CABEI).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Central American Bank for Econ. Integration (BCIE).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Central Bank of West African States (BCEAO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Corporacion Andina de Fomento.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Council of Europe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Angola.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to United Arab Emirates.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Argentina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Armenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Australia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Austria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Azerbaijan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Burundi.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Belgium.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Benin.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Burkina Faso.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bulgaria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bahrain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bahamas.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bosnia-Herzegovina.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Belarus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Belize.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bermuda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Bolivia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Brazil.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Barbados.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Brunei.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Canada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Switzerland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Chile.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to China.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Cote D`Ivoire, Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Cameroon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Congo, Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Congo, Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Colombia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Cabo Verde.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Costa Rica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Cuba.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Cayman Islands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Cyprus.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Czechia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Germany, Fed. Rep. of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Denmark.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Algeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Ecuador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Egypt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Spain.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Finland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to France.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Gabon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to United Kingdom.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Ghana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Gibraltar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Gambia, The.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Equatorial Guinea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Greece.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Grenada.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Guatemala.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Guyana.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Hong Kong.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Honduras.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Croatia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Haiti.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Hungary.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Indonesia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to India.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Ireland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Iran, Islamic Republic Of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Iraq.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Iceland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Israel.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Italy.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Jamaica.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Jordan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Japan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Kazakhstan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Kenya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Kyrgyz Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to St. Kitts And Nevis.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Korea, Republic of.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Kuwait.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Lebanon.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Liberia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Libya.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to St. Lucia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Sri Lanka.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Luxembourg.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Macao.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Morocco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Monaco.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Moldova.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Mexico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to North Macedonia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Mali.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Malta.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Montenegro.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Mauritius.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Malaysia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Nigeria.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Nicaragua.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Netherlands.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Norway.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to New Zealand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Oman.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Pakistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Panama.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Peru.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Philippines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Poland.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Puerto Rico.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to North Korea.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Portugal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Paraguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Qatar.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Romania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Russian Federation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Rwanda.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Saudi Arabia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Senegal.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Singapore.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to El Salvador.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Serbia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to USSR.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Slovak Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Slovenia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Sweden.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Eswatini.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Syrian Arab Republic.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Chad.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Togo.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Thailand.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Turkmenistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Trinidad & Tobago.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Tunisia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Turkiye.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Tanzania.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Ukraine.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Uruguay.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to United States.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Uzbekistan.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to St. Vincent & The Grenadines.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Venezuela, Republic Bolivarian.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Vietnam.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to South Africa.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Zambia.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Zimbabwe.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Dev. Bank of the Central African States (BDEAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to ECO Trade and Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to EUROFIMA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to East African Community.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Eastern & Southern African Trade & Dev. Bank (TDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Econ. Comm. of the Great Lakes Countries (ECGLC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Economic Community of West African States (ECOWAS).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Entente Council.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Eurasian Development Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Bank for Reconstruction and Dev. (EBRD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Coal and Steel Community (ECSC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Development Fund (EDF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Economic Community (EEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Relief Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Social Fund (ESF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to European Union.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Fondo Latinoamericano de Reservas (FLAR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to German Dem. Rep..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Inter-American Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to International Bank for Economic Cooperation (IBEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to International Coffee Organization (ICO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to International Finance Corporation.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to International Fund for Agricultural Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to International Investment Bank (IIB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Islamic Dev. Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Islamic Solidarity Fund for Dev. (ISFD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Latin Amer. Conf. of Saving & Credit Coop. (COLAC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Latin American Agribusiness Dev. Corp. (LAAD).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Multiple Lenders.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Neth. Antilles.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Nordic Development Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Nordic Environment Finance Corporation (NEFCO).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Nordic Investment Bank.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to OPEC Fund for International Dev..\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Org. of Arab Petroleum Exporting Countries (OAPEC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to Plata Basin Financial Dev. Fund.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to South Asian Development Fund (SADF).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to UN-Development Programme (UNDP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to UN-General Assembly (UNGA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to UN-High Commissioner for Refugees (UNHCR).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to UN-Population Fund (UNFPA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to UN-Regular Programme of Technical Coop. (RPTC).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to UN-World Food Programme (WFP).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to West African Development Bank - BOAD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to West African Monetary Union (UMOA).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to World Bank-IBRD.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to World Bank-IDA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to World Bank-MIGA.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Publicly guaranteed long term external debt principal repayment to World Trade Organization.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AmountPrincipalRepayment_Debt_PubliclyGuaranteed_LongTermExternalDebt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage of Population Aged 15 Years or More Who Consume Alcohol\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Consumption_Alcohol_15OrMoreYears_AsFractionOf_Count_Person_15OrMoreYears\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Electricity Used Per Capita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Consumption_Electricity_PerCapita\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of consumption: energy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Consumption_Energy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Energy Used Per Capita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Consumption_Energy_PerCapita\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Fraction of Energy Consumption from Renewables\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Consumption_RenewableEnergy_AsFractionOf_Amount_Consumption_Energy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in CHF to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYORbIAwAAAP//AQAA//90c9ZwUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
#>  [9] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Amount of debt: CHF, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in CHF to New Development Bank (NDB) as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in CHF to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: CHF, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_CHF_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in DEM to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in DEM to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: DEM, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_DEM_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in EUR to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOaYoAwAAAP//AQAA//8E/JPkUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
#> [10] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Amount of debt: EUR, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in EUR to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUR, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_EUR_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in FRF to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in FRF to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: FRF, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_FRF_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in GBP to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOTrUAQAAAP//AQAA//9AZYkFUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
#> [11] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Amount of debt: GBP, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in GBP to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: GBP, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_GBP_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: government\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: government (As fraction of gross domestic production)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_Government_AsAFractionOfGrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in JPY to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in JPY to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: JPY, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_JPY_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: african dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: african export import bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab african international bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab bank for economic dev in africa\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab fund for economic social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab fund for tech assist to african countries\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab league\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab monetary fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: arab towns organization\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: asian dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: asian infrastructure investment bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: bank for international settlements\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: bolivarian alliance for the americas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: bondholders\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: caribbean community\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: caribbean dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: central american bank for econ integ\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: central american bank for econ integration\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: central bank of west african states\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: corporacion andina de fomento\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: council of europe\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/afg\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ago\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/are\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/arg\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/arm\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/aus\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/aut\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/aze\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bdi\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ben\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bfa\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bgd\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bgr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bhr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bhs\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bih\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/blr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/blz\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bmu\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bol\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/bra\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/brb\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/brn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/can\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/che\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/chl\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/chn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/civ\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cmr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cod\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cog\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/col\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cpv\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cri\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cub\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cym\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cyp\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/cze\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/deu\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/dnk\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/dza\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ecu\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/egy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/esp\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/fin\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/fra\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gab\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gbr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gib\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gmb\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gnq\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/grc\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/grd\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/gtm\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/guy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/hkg\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/hnd\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/hrv\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/hti\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/hun\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/idn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ind\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/irl\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/irn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/irq\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/isl\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/isr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/jam\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/jor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/jpn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/kaz\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ken\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/kgz\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/kna\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/kor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/kwt\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/lbn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/lbr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/lby\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/lca\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/lka\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/lux\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mac\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mco\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mda\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mex\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mkd\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mli\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mlt\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mne\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mus\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/mys\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/nam\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ner\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/nga\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/nic\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/nld\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/nor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/nzl\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/omn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/pak\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/pan\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/per\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/phl\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/pol\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/pri\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/prk\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/prt\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/pry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/qat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/rou\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/rus\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/rwa\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/sau\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/sen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/sgp\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/slv\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/srb\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/sun\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/svk\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/svn\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/swe\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/swz\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/syr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tcd\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tgo\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tkm\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tto\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tun\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tur\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/tza\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ukr\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ury\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/usa\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/uzb\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/vct\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/ven\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/vnm\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/zaf\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/zmb\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: country/zwe\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: dev bank of the central african states\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: ECO trade and dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: EUROFIMA\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: east african community\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: eastern southern african trade dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: econ comm of the great lakes countries\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: economic community of west african states\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: entente council\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: eurasian development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european bank for reconstruction and dev\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european coal and steel community\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european development fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european economic community\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european investment bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european relief fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european social fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: european union\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: fondo latinoamericano de reservas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: german dem rep\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOf5oAQAAAP//AQAA//8PpWswUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
#> [12] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Amount of debt: inter american dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: international bank for economic cooperation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: international coffee organization\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: international finance corporation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: international fund for agricultural dev\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: international investment bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: international monetary fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: islamic dev bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: islamic solidarity fund for dev\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: latin amer conf of saving credit coop\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: latin american agribusiness dev corp\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: multiple lenders\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: neth antilles\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt to New Development Bank (NDB).\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: nordic development fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: nordic environment finance corporation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: nordic investment bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: OPEC fund for international dev\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: org of arab petroleum exporting countries\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: other multiple lenders\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: plata basin financial dev fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: south asian development fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN children fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN development programme\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN general assembly\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN high commissioner for refugees\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN population fund\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN regular programme of technical coop\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: UN world food programme\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: west african development bank\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: west african monetary union\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank IBRD\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank IDA\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank MIGA\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world trade organization\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in SDR to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in SDR to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: SDR, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_SDR_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in USD to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, new development bank (As fraction of amount debt lender new development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in USD to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: USD, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_USD_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in World Bank multiple currency to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOT7oAQAAAP//AQAA//8aLrObUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
#> [13] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Amount of debt: world bank multiple currency, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in World Bank multiple currency to New Development Bank (NDB) as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in World Bank multiple currency to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank multiple currency, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankMultipleCurrency_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency (As fraction of amount debt)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_AsAFractionOf_Amount_Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in World Bank other currency to Africa Finance Corporation as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderAfrica_Finance_Corporation_AsAFractionOf_Amount_Debt_LenderAfrica_Finance_Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, african dev bank (As fraction of amount debt lender african dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderAfricanDevBank_AsAFractionOf_Amount_Debt_LenderAfricanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, african export import bank (As fraction of amount debt lender african export import bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderAfricanExportImportBank_AsAFractionOf_Amount_Debt_LenderAfricanExportImportBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab african international bank (As fraction of amount debt lender arab african international bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabAfricanInternationalBank_AsAFractionOf_Amount_Debt_LenderArabAfricanInternationalBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab bank for economic dev in africa (As fraction of amount debt lender arab bankfor economic devin africa)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabBankforEconomicDevinAfrica_AsAFractionOf_Amount_Debt_LenderArabBankforEconomicDevinAfrica\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab fund for economic social development (As fraction of amount debt lender arab fundfor economic social development)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabFundforEconomicSocialDevelopment_AsAFractionOf_Amount_Debt_LenderArabFundforEconomicSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab fund for tech assist to african countries (As fraction of amount debt lender arab fundfor tech assistto african countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabFundforTechAssisttoAfricanCountries_AsAFractionOf_Amount_Debt_LenderArabFundforTechAssisttoAfricanCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab league (As fraction of amount debt lender arab league)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabLeague_AsAFractionOf_Amount_Debt_LenderArabLeague\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab monetary fund (As fraction of amount debt lender arab monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabMonetaryFund_AsAFractionOf_Amount_Debt_LenderArabMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, arab towns organization (As fraction of amount debt lender arab towns organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderArabTownsOrganization_AsAFractionOf_Amount_Debt_LenderArabTownsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, asian dev bank (As fraction of amount debt lender asian dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderAsianDevBank_AsAFractionOf_Amount_Debt_LenderAsianDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, asian infrastructure investment bank (As fraction of amount debt lender asian infrastructure investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderAsianInfrastructureInvestmentBank_AsAFractionOf_Amount_Debt_LenderAsianInfrastructureInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, bank for international settlements (As fraction of amount debt lender bankfor international settlements)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderBankforInternationalSettlements_AsAFractionOf_Amount_Debt_LenderBankforInternationalSettlements\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, bolivarian alliance for the americas (As fraction of amount debt lender bolivarian allianceforthe americas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderBolivarianAlliancefortheAmericas_AsAFractionOf_Amount_Debt_LenderBolivarianAlliancefortheAmericas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, bondholders (As fraction of amount debt lender bondholders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderBondholders_AsAFractionOf_Amount_Debt_LenderBondholders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, caribbean community (As fraction of amount debt lender caribbean community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCaribbeanCommunity_AsAFractionOf_Amount_Debt_LenderCaribbeanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, caribbean dev bank (As fraction of amount debt lender caribbean dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCaribbeanDevBank_AsAFractionOf_Amount_Debt_LenderCaribbeanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, central american bank for econ integ (As fraction of amount debt lender central american bankfor econ integ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCentralAmericanBankforEconInteg_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconInteg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, central american bank for econ integration (As fraction of amount debt lender central american bankfor econ integration)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCentralAmericanBankforEconIntegration_AsAFractionOf_Amount_Debt_LenderCentralAmericanBankforEconIntegration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, central bank of west african states (As fraction of amount debt lender central bankof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCentralBankofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderCentralBankofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, corporacion andina de fomento (As fraction of amount debt lender corporacion andinade fomento)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCorporacionAndinadeFomento_AsAFractionOf_Amount_Debt_LenderCorporacionAndinadeFomento\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, council of europe (As fraction of amount debt lender councilof europe)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCouncilofEurope_AsAFractionOf_Amount_Debt_LenderCouncilofEurope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/afg (As fraction of amount debt lender country AFG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryAFG_AsAFractionOf_Amount_Debt_LenderCountryAFG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ago (As fraction of amount debt lender country AGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryAGO_AsAFractionOf_Amount_Debt_LenderCountryAGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/are (As fraction of amount debt lender country ARE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryARE_AsAFractionOf_Amount_Debt_LenderCountryARE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/arg (As fraction of amount debt lender country ARG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryARG_AsAFractionOf_Amount_Debt_LenderCountryARG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/arm (As fraction of amount debt lender country ARM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryARM_AsAFractionOf_Amount_Debt_LenderCountryARM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/aus (As fraction of amount debt lender country AUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryAUS_AsAFractionOf_Amount_Debt_LenderCountryAUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/aut (As fraction of amount debt lender country AUT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryAUT_AsAFractionOf_Amount_Debt_LenderCountryAUT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/aze (As fraction of amount debt lender country AZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryAZE_AsAFractionOf_Amount_Debt_LenderCountryAZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bdi (As fraction of amount debt lender country BDI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBDI_AsAFractionOf_Amount_Debt_LenderCountryBDI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bel (As fraction of amount debt lender country BEL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBEL_AsAFractionOf_Amount_Debt_LenderCountryBEL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ben (As fraction of amount debt lender country BEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBEN_AsAFractionOf_Amount_Debt_LenderCountryBEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bfa (As fraction of amount debt lender country BFA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBFA_AsAFractionOf_Amount_Debt_LenderCountryBFA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bgd (As fraction of amount debt lender country BGD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBGD_AsAFractionOf_Amount_Debt_LenderCountryBGD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bgr (As fraction of amount debt lender country BGR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBGR_AsAFractionOf_Amount_Debt_LenderCountryBGR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bhr (As fraction of amount debt lender country BHR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBHR_AsAFractionOf_Amount_Debt_LenderCountryBHR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bhs (As fraction of amount debt lender country BHS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBHS_AsAFractionOf_Amount_Debt_LenderCountryBHS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bih (As fraction of amount debt lender country BIH)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBIH_AsAFractionOf_Amount_Debt_LenderCountryBIH\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/blr (As fraction of amount debt lender country BLR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBLR_AsAFractionOf_Amount_Debt_LenderCountryBLR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/blz (As fraction of amount debt lender country BLZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBLZ_AsAFractionOf_Amount_Debt_LenderCountryBLZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bmu (As fraction of amount debt lender country BMU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBMU_AsAFractionOf_Amount_Debt_LenderCountryBMU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bol (As fraction of amount debt lender country BOL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBOL_AsAFractionOf_Amount_Debt_LenderCountryBOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/bra (As fraction of amount debt lender country BRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBRA_AsAFractionOf_Amount_Debt_LenderCountryBRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/brb (As fraction of amount debt lender country BRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBRB_AsAFractionOf_Amount_Debt_LenderCountryBRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/brn (As fraction of amount debt lender country BRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryBRN_AsAFractionOf_Amount_Debt_LenderCountryBRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/can (As fraction of amount debt lender country CAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCAN_AsAFractionOf_Amount_Debt_LenderCountryCAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/che (As fraction of amount debt lender country CHE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCHE_AsAFractionOf_Amount_Debt_LenderCountryCHE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/chl (As fraction of amount debt lender country CHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCHL_AsAFractionOf_Amount_Debt_LenderCountryCHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/chn (As fraction of amount debt lender country CHN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCHN_AsAFractionOf_Amount_Debt_LenderCountryCHN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/civ (As fraction of amount debt lender country CIV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCIV_AsAFractionOf_Amount_Debt_LenderCountryCIV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cmr (As fraction of amount debt lender country CMR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCMR_AsAFractionOf_Amount_Debt_LenderCountryCMR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cod (As fraction of amount debt lender country COD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCOD_AsAFractionOf_Amount_Debt_LenderCountryCOD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cog (As fraction of amount debt lender country COG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCOG_AsAFractionOf_Amount_Debt_LenderCountryCOG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/col (As fraction of amount debt lender country COL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCOL_AsAFractionOf_Amount_Debt_LenderCountryCOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cpv (As fraction of amount debt lender country CPV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCPV_AsAFractionOf_Amount_Debt_LenderCountryCPV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cri (As fraction of amount debt lender country CRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCRI_AsAFractionOf_Amount_Debt_LenderCountryCRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cub (As fraction of amount debt lender country CUB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCUB_AsAFractionOf_Amount_Debt_LenderCountryCUB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cym (As fraction of amount debt lender country CYM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCYM_AsAFractionOf_Amount_Debt_LenderCountryCYM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cyp (As fraction of amount debt lender country CYP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCYP_AsAFractionOf_Amount_Debt_LenderCountryCYP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/cze (As fraction of amount debt lender country CZE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryCZE_AsAFractionOf_Amount_Debt_LenderCountryCZE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/deu (As fraction of amount debt lender country DEU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryDEU_AsAFractionOf_Amount_Debt_LenderCountryDEU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/dnk (As fraction of amount debt lender country DNK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryDNK_AsAFractionOf_Amount_Debt_LenderCountryDNK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/dza (As fraction of amount debt lender country DZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryDZA_AsAFractionOf_Amount_Debt_LenderCountryDZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ecu (As fraction of amount debt lender country ECU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryECU_AsAFractionOf_Amount_Debt_LenderCountryECU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/egy (As fraction of amount debt lender country EGY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryEGY_AsAFractionOf_Amount_Debt_LenderCountryEGY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/esp (As fraction of amount debt lender country ESP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryESP_AsAFractionOf_Amount_Debt_LenderCountryESP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/fin (As fraction of amount debt lender country FIN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryFIN_AsAFractionOf_Amount_Debt_LenderCountryFIN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/fra (As fraction of amount debt lender country FRA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryFRA_AsAFractionOf_Amount_Debt_LenderCountryFRA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gab (As fraction of amount debt lender country GAB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGAB_AsAFractionOf_Amount_Debt_LenderCountryGAB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gbr (As fraction of amount debt lender country GBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGBR_AsAFractionOf_Amount_Debt_LenderCountryGBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gha (As fraction of amount debt lender country GHA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGHA_AsAFractionOf_Amount_Debt_LenderCountryGHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gib (As fraction of amount debt lender country GIB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGIB_AsAFractionOf_Amount_Debt_LenderCountryGIB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gmb (As fraction of amount debt lender country GMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGMB_AsAFractionOf_Amount_Debt_LenderCountryGMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gnq (As fraction of amount debt lender country GNQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGNQ_AsAFractionOf_Amount_Debt_LenderCountryGNQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/grc (As fraction of amount debt lender country GRC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGRC_AsAFractionOf_Amount_Debt_LenderCountryGRC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/grd (As fraction of amount debt lender country GRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGRD_AsAFractionOf_Amount_Debt_LenderCountryGRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/gtm (As fraction of amount debt lender country GTM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGTM_AsAFractionOf_Amount_Debt_LenderCountryGTM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/guy (As fraction of amount debt lender country GUY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryGUY_AsAFractionOf_Amount_Debt_LenderCountryGUY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/hkg (As fraction of amount debt lender country HKG)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryHKG_AsAFractionOf_Amount_Debt_LenderCountryHKG\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/hnd (As fraction of amount debt lender country HND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryHND_AsAFractionOf_Amount_Debt_LenderCountryHND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/hrv (As fraction of amount debt lender country HRV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryHRV_AsAFractionOf_Amount_Debt_LenderCountryHRV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/hti (As fraction of amount debt lender country HTI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryHTI_AsAFractionOf_Amount_Debt_LenderCountryHTI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/hun (As fraction of amount debt lender country HUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryHUN_AsAFractionOf_Amount_Debt_LenderCountryHUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/idn (As fraction of amount debt lender country IDN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryIDN_AsAFractionOf_Amount_Debt_LenderCountryIDN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ind (As fraction of amount debt lender country IND)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryIND_AsAFractionOf_Amount_Debt_LenderCountryIND\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/irl (As fraction of amount debt lender country IRL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryIRL_AsAFractionOf_Amount_Debt_LenderCountryIRL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/irn (As fraction of amount debt lender country IRN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryIRN_AsAFractionOf_Amount_Debt_LenderCountryIRN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/irq (As fraction of amount debt lender country IRQ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryIRQ_AsAFractionOf_Amount_Debt_LenderCountryIRQ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/isl (As fraction of amount debt lender country ISL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryISL_AsAFractionOf_Amount_Debt_LenderCountryISL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/isr (As fraction of amount debt lender country ISR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryISR_AsAFractionOf_Amount_Debt_LenderCountryISR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ita (As fraction of amount debt lender country ITA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryITA_AsAFractionOf_Amount_Debt_LenderCountryITA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/jam (As fraction of amount debt lender country JAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryJAM_AsAFractionOf_Amount_Debt_LenderCountryJAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/jor (As fraction of amount debt lender country JOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryJOR_AsAFractionOf_Amount_Debt_LenderCountryJOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/jpn (As fraction of amount debt lender country JPN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryJPN_AsAFractionOf_Amount_Debt_LenderCountryJPN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/kaz (As fraction of amount debt lender country KAZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryKAZ_AsAFractionOf_Amount_Debt_LenderCountryKAZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ken (As fraction of amount debt lender country KEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryKEN_AsAFractionOf_Amount_Debt_LenderCountryKEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/kgz (As fraction of amount debt lender country KGZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryKGZ_AsAFractionOf_Amount_Debt_LenderCountryKGZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/kna (As fraction of amount debt lender country KNA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryKNA_AsAFractionOf_Amount_Debt_LenderCountryKNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/kor (As fraction of amount debt lender country KOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryKOR_AsAFractionOf_Amount_Debt_LenderCountryKOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/kwt (As fraction of amount debt lender country KWT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryKWT_AsAFractionOf_Amount_Debt_LenderCountryKWT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/lbn (As fraction of amount debt lender country LBN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryLBN_AsAFractionOf_Amount_Debt_LenderCountryLBN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/lbr (As fraction of amount debt lender country LBR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryLBR_AsAFractionOf_Amount_Debt_LenderCountryLBR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/lby (As fraction of amount debt lender country LBY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryLBY_AsAFractionOf_Amount_Debt_LenderCountryLBY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/lca (As fraction of amount debt lender country LCA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryLCA_AsAFractionOf_Amount_Debt_LenderCountryLCA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/lka (As fraction of amount debt lender country LKA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryLKA_AsAFractionOf_Amount_Debt_LenderCountryLKA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/lux (As fraction of amount debt lender country LUX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryLUX_AsAFractionOf_Amount_Debt_LenderCountryLUX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mac (As fraction of amount debt lender country MAC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMAC_AsAFractionOf_Amount_Debt_LenderCountryMAC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mar (As fraction of amount debt lender country MAR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMAR_AsAFractionOf_Amount_Debt_LenderCountryMAR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mco (As fraction of amount debt lender country MCO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMCO_AsAFractionOf_Amount_Debt_LenderCountryMCO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mda (As fraction of amount debt lender country MDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMDA_AsAFractionOf_Amount_Debt_LenderCountryMDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mex (As fraction of amount debt lender country MEX)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMEX_AsAFractionOf_Amount_Debt_LenderCountryMEX\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mkd (As fraction of amount debt lender country MKD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMKD_AsAFractionOf_Amount_Debt_LenderCountryMKD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mli (As fraction of amount debt lender country MLI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMLI_AsAFractionOf_Amount_Debt_LenderCountryMLI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mlt (As fraction of amount debt lender country MLT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMLT_AsAFractionOf_Amount_Debt_LenderCountryMLT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mne (As fraction of amount debt lender country MNE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMNE_AsAFractionOf_Amount_Debt_LenderCountryMNE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mus (As fraction of amount debt lender country MUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMUS_AsAFractionOf_Amount_Debt_LenderCountryMUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/mys (As fraction of amount debt lender country MYS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryMYS_AsAFractionOf_Amount_Debt_LenderCountryMYS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/nam (As fraction of amount debt lender country NAM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNAM_AsAFractionOf_Amount_Debt_LenderCountryNAM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ner (As fraction of amount debt lender country NER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNER_AsAFractionOf_Amount_Debt_LenderCountryNER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/nga (As fraction of amount debt lender country NGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNGA_AsAFractionOf_Amount_Debt_LenderCountryNGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/nic (As fraction of amount debt lender country NIC)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNIC_AsAFractionOf_Amount_Debt_LenderCountryNIC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/nld (As fraction of amount debt lender country NLD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNLD_AsAFractionOf_Amount_Debt_LenderCountryNLD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/nor (As fraction of amount debt lender country NOR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNOR_AsAFractionOf_Amount_Debt_LenderCountryNOR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/nzl (As fraction of amount debt lender country NZL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryNZL_AsAFractionOf_Amount_Debt_LenderCountryNZL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/omn (As fraction of amount debt lender country OMN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryOMN_AsAFractionOf_Amount_Debt_LenderCountryOMN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/pak (As fraction of amount debt lender country PAK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPAK_AsAFractionOf_Amount_Debt_LenderCountryPAK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/pan (As fraction of amount debt lender country PAN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPAN_AsAFractionOf_Amount_Debt_LenderCountryPAN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/per (As fraction of amount debt lender country PER)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPER_AsAFractionOf_Amount_Debt_LenderCountryPER\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/phl (As fraction of amount debt lender country PHL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPHL_AsAFractionOf_Amount_Debt_LenderCountryPHL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/pol (As fraction of amount debt lender country POL)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPOL_AsAFractionOf_Amount_Debt_LenderCountryPOL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/pri (As fraction of amount debt lender country PRI)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPRI_AsAFractionOf_Amount_Debt_LenderCountryPRI\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/prk (As fraction of amount debt lender country PRK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPRK_AsAFractionOf_Amount_Debt_LenderCountryPRK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/prt (As fraction of amount debt lender country PRT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPRT_AsAFractionOf_Amount_Debt_LenderCountryPRT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/pry (As fraction of amount debt lender country PRY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryPRY_AsAFractionOf_Amount_Debt_LenderCountryPRY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/qat (As fraction of amount debt lender country QAT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryQAT_AsAFractionOf_Amount_Debt_LenderCountryQAT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/rou (As fraction of amount debt lender country ROU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryROU_AsAFractionOf_Amount_Debt_LenderCountryROU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/rus (As fraction of amount debt lender country RUS)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryRUS_AsAFractionOf_Amount_Debt_LenderCountryRUS\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/rwa (As fraction of amount debt lender country RWA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryRWA_AsAFractionOf_Amount_Debt_LenderCountryRWA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/sau (As fraction of amount debt lender country SAU)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySAU_AsAFractionOf_Amount_Debt_LenderCountrySAU\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/sen (As fraction of amount debt lender country SEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySEN_AsAFractionOf_Amount_Debt_LenderCountrySEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/sgp (As fraction of amount debt lender country SGP)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySGP_AsAFractionOf_Amount_Debt_LenderCountrySGP\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/slv (As fraction of amount debt lender country SLV)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySLV_AsAFractionOf_Amount_Debt_LenderCountrySLV\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/srb (As fraction of amount debt lender country SRB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySRB_AsAFractionOf_Amount_Debt_LenderCountrySRB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/sun (As fraction of amount debt lender country SUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySUN_AsAFractionOf_Amount_Debt_LenderCountrySUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/svk (As fraction of amount debt lender country SVK)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySVK_AsAFractionOf_Amount_Debt_LenderCountrySVK\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/svn (As fraction of amount debt lender country SVN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySVN_AsAFractionOf_Amount_Debt_LenderCountrySVN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/swe (As fraction of amount debt lender country SWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySWE_AsAFractionOf_Amount_Debt_LenderCountrySWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/swz (As fraction of amount debt lender country SWZ)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySWZ_AsAFractionOf_Amount_Debt_LenderCountrySWZ\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/syr (As fraction of amount debt lender country SYR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountrySYR_AsAFractionOf_Amount_Debt_LenderCountrySYR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tcd (As fraction of amount debt lender country TCD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTCD_AsAFractionOf_Amount_Debt_LenderCountryTCD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tgo (As fraction of amount debt lender country TGO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTGO_AsAFractionOf_Amount_Debt_LenderCountryTGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tha (As fraction of amount debt lender country THA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTHA_AsAFractionOf_Amount_Debt_LenderCountryTHA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tkm (As fraction of amount debt lender country TKM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTKM_AsAFractionOf_Amount_Debt_LenderCountryTKM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tto (As fraction of amount debt lender country TTO)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTTO_AsAFractionOf_Amount_Debt_LenderCountryTTO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tun (As fraction of amount debt lender country TUN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTUN_AsAFractionOf_Amount_Debt_LenderCountryTUN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tur (As fraction of amount debt lender country TUR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTUR_AsAFractionOf_Amount_Debt_LenderCountryTUR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/tza (As fraction of amount debt lender country TZA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryTZA_AsAFractionOf_Amount_Debt_LenderCountryTZA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ukr (As fraction of amount debt lender country UKR)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryUKR_AsAFractionOf_Amount_Debt_LenderCountryUKR\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ury (As fraction of amount debt lender country URY)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryURY_AsAFractionOf_Amount_Debt_LenderCountryURY\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/usa (As fraction of amount debt lender country USA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryUSA_AsAFractionOf_Amount_Debt_LenderCountryUSA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/uzb (As fraction of amount debt lender country UZB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryUZB_AsAFractionOf_Amount_Debt_LenderCountryUZB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/vct (As fraction of amount debt lender country VCT)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryVCT_AsAFractionOf_Amount_Debt_LenderCountryVCT\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/ven (As fraction of amount debt lender country VEN)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryVEN_AsAFractionOf_Amount_Debt_LenderCountryVEN\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/vnm (As fraction of amount debt lender country VNM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryVNM_AsAFractionOf_Amount_Debt_LenderCountryVNM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/zaf (As fraction of amount debt lender country ZAF)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryZAF_AsAFractionOf_Amount_Debt_LenderCountryZAF\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/zmb (As fraction of amount debt lender country ZMB)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryZMB_AsAFractionOf_Amount_Debt_LenderCountryZMB\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, country/zwe (As fraction of amount debt lender country ZWE)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderCountryZWE_AsAFractionOf_Amount_Debt_LenderCountryZWE\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, dev bank of the central african states (As fraction of amount debt lender dev bankofthe central african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderDevBankoftheCentralAfricanStates_AsAFractionOf_Amount_Debt_LenderDevBankoftheCentralAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, ECO trade and dev bank (As fraction of amount debt lender ECO tradeand dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderECOTradeandDevBank_AsAFractionOf_Amount_Debt_LenderECOTradeandDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, EUROFIMA (As fraction of amount debt lender EUROFIMA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEUROFIMA_AsAFractionOf_Amount_Debt_LenderEUROFIMA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, east african community (As fraction of amount debt lender east african community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEastAfricanCommunity_AsAFractionOf_Amount_Debt_LenderEastAfricanCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, eastern southern african trade dev bank (As fraction of amount debt lender eastern southern african trade dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEasternSouthernAfricanTradeDevBank_AsAFractionOf_Amount_Debt_LenderEasternSouthernAfricanTradeDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, econ comm of the great lakes countries (As fraction of amount debt lender econ commofthe great lakes countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEconCommoftheGreatLakesCountries_AsAFractionOf_Amount_Debt_LenderEconCommoftheGreatLakesCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, economic community of west african states (As fraction of amount debt lender economic communityof west african states)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEconomicCommunityofWestAfricanStates_AsAFractionOf_Amount_Debt_LenderEconomicCommunityofWestAfricanStates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, entente council (As fraction of amount debt lender entente council)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEntenteCouncil_AsAFractionOf_Amount_Debt_LenderEntenteCouncil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, eurasian development bank (As fraction of amount debt lender eurasian development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEurasianDevelopmentBank_AsAFractionOf_Amount_Debt_LenderEurasianDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european bank for reconstruction and dev (As fraction of amount debt lender european bankfor reconstructionand dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanBankforReconstructionandDev_AsAFractionOf_Amount_Debt_LenderEuropeanBankforReconstructionandDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european coal and steel community (As fraction of amount debt lender european coaland steel community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanCoalandSteelCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanCoalandSteelCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european development fund (As fraction of amount debt lender european development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanDevelopmentFund_AsAFractionOf_Amount_Debt_LenderEuropeanDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european economic community (As fraction of amount debt lender european economic community)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanEconomicCommunity_AsAFractionOf_Amount_Debt_LenderEuropeanEconomicCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european investment bank (As fraction of amount debt lender european investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanInvestmentBank_AsAFractionOf_Amount_Debt_LenderEuropeanInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european relief fund (As fraction of amount debt lender european relief fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanReliefFund_AsAFractionOf_Amount_Debt_LenderEuropeanReliefFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european social fund (As fraction of amount debt lender european social fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanSocialFund_AsAFractionOf_Amount_Debt_LenderEuropeanSocialFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, european union (As fraction of amount debt lender european union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderEuropeanUnion_AsAFractionOf_Amount_Debt_LenderEuropeanUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, fondo latinoamericano de reservas (As fraction of amount debt lender fondo latinoamericanode reservas)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderFondoLatinoamericanodeReservas_AsAFractionOf_Amount_Debt_LenderFondoLatinoamericanodeReservas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, german dem rep (As fraction of amount debt lender german dem rep)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderGermanDemRep_AsAFractionOf_Amount_Debt_LenderGermanDemRep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, inter american dev bank (As fraction of amount debt lender inter american dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInterAmericanDevBank_AsAFractionOf_Amount_Debt_LenderInterAmericanDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, international bank for economic cooperation (As fraction of amount debt lender international bankfor economic cooperation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInternationalBankforEconomicCooperation_AsAFractionOf_Amount_Debt_LenderInternationalBankforEconomicCooperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, international coffee organization (As fraction of amount debt lender international coffee organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInternationalCoffeeOrganization_AsAFractionOf_Amount_Debt_LenderInternationalCoffeeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, international finance corporation (As fraction of amount debt lender international finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInternationalFinanceCorporation_AsAFractionOf_Amount_Debt_LenderInternationalFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, international fund for agricultural dev (As fraction of amount debt lender international fundfor agricultural dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInternationalFundforAgriculturalDev_AsAFractionOf_Amount_Debt_LenderInternationalFundforAgriculturalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, international investment bank (As fraction of amount debt lender international investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInternationalInvestmentBank_AsAFractionOf_Amount_Debt_LenderInternationalInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, international monetary fund (As fraction of amount debt lender international monetary fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderInternationalMonetaryFund_AsAFractionOf_Amount_Debt_LenderInternationalMonetaryFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, islamic dev bank (As fraction of amount debt lender islamic dev bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderIslamicDevBank_AsAFractionOf_Amount_Debt_LenderIslamicDevBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, islamic solidarity fund for dev (As fraction of amount debt lender islamic solidarity fundfor dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderIslamicSolidarityFundforDev_AsAFractionOf_Amount_Debt_LenderIslamicSolidarityFundforDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, latin amer conf of saving credit coop (As fraction of amount debt lender latin amer confof saving credit coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderLatinAmerConfofSavingCreditCoop_AsAFractionOf_Amount_Debt_LenderLatinAmerConfofSavingCreditCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, latin american agribusiness dev corp (As fraction of amount debt lender latin american agribusiness dev corp)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderLatinAmericanAgribusinessDevCorp_AsAFractionOf_Amount_Debt_LenderLatinAmericanAgribusinessDevCorp\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, multiple lenders (As fraction of amount debt lender multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderMultipleLenders_AsAFractionOf_Amount_Debt_LenderMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, neth antilles (As fraction of amount debt lender neth antilles)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderNethAntilles_AsAFractionOf_Amount_Debt_LenderNethAntilles\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in World Bank multiple currency to New Development Bank (NDB) as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderNewDevelopmentBank_AsAFractionOf_Amount_Debt_LenderNewDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, nordic development fund (As fraction of amount debt lender nordic development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderNordicDevelopmentFund_AsAFractionOf_Amount_Debt_LenderNordicDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, nordic environment finance corporation (As fraction of amount debt lender nordic environment finance corporation)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderNordicEnvironmentFinanceCorporation_AsAFractionOf_Amount_Debt_LenderNordicEnvironmentFinanceCorporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, nordic investment bank (As fraction of amount debt lender nordic investment bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderNordicInvestmentBank_AsAFractionOf_Amount_Debt_LenderNordicInvestmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, OPEC fund for international dev (As fraction of amount debt lender OPEC fundfor international dev)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderOPECFundforInternationalDev_AsAFractionOf_Amount_Debt_LenderOPECFundforInternationalDev\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, org of arab petroleum exporting countries (As fraction of amount debt lender orgof arab petroleum exporting countries)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderOrgofArabPetroleumExportingCountries_AsAFractionOf_Amount_Debt_LenderOrgofArabPetroleumExportingCountries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, other multiple lenders (As fraction of amount debt lender other multiple lenders)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderOtherMultipleLenders_AsAFractionOf_Amount_Debt_LenderOtherMultipleLenders\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, plata basin financial dev fund (As fraction of amount debt lender plata basin financial dev fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderPlataBasinFinancialDevFund_AsAFractionOf_Amount_Debt_LenderPlataBasinFinancialDevFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, south asian development fund (As fraction of amount debt lender south asian development fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderSouthAsianDevelopmentFund_AsAFractionOf_Amount_Debt_LenderSouthAsianDevelopmentFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN children fund (As fraction of amount debt lender UN children fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNChildrenFund_AsAFractionOf_Amount_Debt_LenderUNChildrenFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN development programme (As fraction of amount debt lender UN development programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNDevelopmentProgramme_AsAFractionOf_Amount_Debt_LenderUNDevelopmentProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN general assembly (As fraction of amount debt lender UN general assembly)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNGeneralAssembly_AsAFractionOf_Amount_Debt_LenderUNGeneralAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN high commissioner for refugees (As fraction of amount debt lender UN high commissionerfor refugees)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNHighCommissionerforRefugees_AsAFractionOf_Amount_Debt_LenderUNHighCommissionerforRefugees\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN population fund (As fraction of amount debt lender UN population fund)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNPopulationFund_AsAFractionOf_Amount_Debt_LenderUNPopulationFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN regular programme of technical coop (As fraction of amount debt lender UN regular programmeof technical coop)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNRegularProgrammeofTechnicalCoop_AsAFractionOf_Amount_Debt_LenderUNRegularProgrammeofTechnicalCoop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, UN world food programme (As fraction of amount debt lender UN world food programme)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUNWorldFoodProgramme_AsAFractionOf_Amount_Debt_LenderUNWorldFoodProgramme\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt in World Bank other currency to Uganda as a fraction of total debt.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderUganda_AsAFractionOf_Amount_Debt_LenderUganda\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, west african development bank (As fraction of amount debt lender west african development bank)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderWestAfricanDevelopmentBank_AsAFractionOf_Amount_Debt_LenderWestAfricanDevelopmentBank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, west african monetary union (As fraction of amount debt lender west african monetary union)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderWestAfricanMonetaryUnion_AsAFractionOf_Amount_Debt_LenderWestAfricanMonetaryUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, world bank IBRD (As fraction of amount debt lender world bank IBRD)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderWorldBankIBRD_AsAFractionOf_Amount_Debt_LenderWorldBankIBRD\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, world bank IDA (As fraction of amount debt lender world bank IDA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderWorldBankIDA_AsAFractionOf_Amount_Debt_LenderWorldBankIDA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, world bank MIGA (As fraction of amount debt lender world bank MIGA)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderWorldBankMIGA_AsAFractionOf_Amount_Debt_LenderWorldBankMIGA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of debt: world bank other currency, world trade organization (As fraction of amount debt lender world trade organization)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Debt_WorldBankOtherCurrency_LenderWorldTradeOrganization_AsAFractionOf_Amount_Debt_LenderWorldTradeOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: expenditure activity (As fraction of amount economic activity gross domestic production)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: expenditure activity, education expenditure, government\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percent of total government expenditure on education\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percent of nominal GDP spent on education\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: expenditure activity, government\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Healthcare expenditure per person\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_HealthcareExpenditure_AsFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Government expenditure on military activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percent of nominal GDP spent on military activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_MilitaryExpenditure_Government_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Expenditure on relief on natural calamity\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_ReliefOnNaturalCalamity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Fraction of Government Expenditure on Tertiary Education\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_ExpenditureActivity_TertiaryEducationExpenditure_Government_AsFractionOf_Amount_EconomicActivity_ExpenditureActivity_EducationExpenditure_Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount economic activity gross domestic production\",\"types\":[\"MeasurementDenominatorEnum\",\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by accommodation and food service activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AccommodationAndFoodSector_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by administrative and support service activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AdministrativeAndSupportServices_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by agricultural support activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AgriculturalSupportActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by forestry and fishing\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AgricultureForestryFishingSector_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by crop growing\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_Agriculture_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by air transport and support services\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AirTransportAndSupportServices_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by all economic activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AllEconomicActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by animal production\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_AnimalProduction_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by arts\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ArtsEntertainmentRecreation_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by construction\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ConstructionSector_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by education\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_Education_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by electricity supply\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ElectricitySupply_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by employer household activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_EmployerHouseholdActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by financial activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_FinancialActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by financial and insurance activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_FinancialAndInsuranceActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by financial intermediation services indirectly measured (FISIM)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_FinancialIntermediationServicesIndirectlyMeasured_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by fishing and aquaculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_FishingAquaculture_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of GDP by food\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_FoodBeveragesTobaccoManufacture_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by forestry and logging to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ForestryLogging_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount economic activity gross domestic production higher secondary education\",\"types\":[\"MeasurementDenominatorEnum\",\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_HigherSecondaryEducation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by higher secondary education to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_HigherSecondaryEducation_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction_HigherSecondaryEducation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by human health and social work to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_HumanHealthAndSocialWork_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by information and communication to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_InformationAndCommunication_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by insurance activities to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_InsuranceActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution on gross domestic product by land transport to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_LandTransport_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by manufacturing to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ManufacturingSector_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by mining and quarrying to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_MiningQuarrying_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Accommodation and Food Services Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSAccommodationFoodServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Administrative and Support and Waste Management Services Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSAdministrativeSupportWasteManagementRemediationServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Agriculture, Forestry, Fishing and Hunting Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSAgricultureForestryFishingHunting_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/71-72\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreationAccommodationFoodServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Arts, Entertainment, and Recreation Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSArtsEntertainmentRecreation_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Construction Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSConstruction_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/JOLTS 320000\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSDurableGoodsManufacturing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/61-62\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServicesHealthCareSocialAssistance_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Educational Services Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSEducationalServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/52-53\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsuranceRealEstateRentalLeasing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Finance and Insurance Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSFinanceInsurance_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Health Care and Social Assistance Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSHealthCareSocialAssistance_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Information Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSInformation_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Management of Companies and Enterprises Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSManagementOfCompaniesEnterprises_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/1013\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSManufacturing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Mining, Quarrying, and Oil and Gas Extraction Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSMiningQuarryingOilGasExtraction_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/1011\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSNaturalResourcesMining_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/JOLTS 340000\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSNondurableGoodsManufacturing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of Other Services, Except Public Administration Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSOtherServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross domestic production, NAICS/JOLTS 540099\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalAndBusinessServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Professional, Scientific, and Technical Services Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSProfessionalScientificTechnicalServices_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Real Estate and Rental and Leasing Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSRealEstateRentalLeasing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Utilities Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSUtilities_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP of the Wholesale Trade Industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_NAICSWholesaleTrade_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Nominal gross domestic product\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_Nominal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Nominal gross domestic product per capita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_Nominal_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Nominal gross domestic product per capita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_Nominal_PerCapita\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by other manufacturing\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_OtherManufacturingAndRepair_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by other service activities to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_OtherServiceSector_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by other transport\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_OtherTransportPostalCourierActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount Economic Activity gross domestic production Pre Primary And Primary Education\",\"types\":[\"MeasurementDenominatorEnum\",\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_PrePrimaryAndPrimaryEducation\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOZ4YAQAAAP//AQAA//8ApRyhUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
#> [14] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Percentage distribution of gross domestic product by pre-primary and primary education to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_PrePrimaryAndPrimaryEducation_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction_PrePrimaryAndPrimaryEducation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by product taxes to the GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ProductTaxes_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by scientific and technical activities compared to the total gross domestic product.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_ProfessionalScientificTechnicalActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by public administration and defense to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_PublicAdministrationAndDefence_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by publishing\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_PublishingBroadcastingInformationActivities_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by real estate to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_RealEstate_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Real gross domestic product by economic activity\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount Economic Activity gross domestic production Secondary Education\",\"types\":[\"MeasurementDenominatorEnum\",\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_SecondaryEducation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution on gross domestic product by general secondary education to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_SecondaryEducation_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction_SecondaryEducation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by telecommunications to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_Telecommunications_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by transportation and storage to GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_TransportStorageSector_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by waste management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_WaterSupplySewerageWasteManagement_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Percentage distribution of gross domestic product by wholesale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossDomesticProduction_WholesaleRetailTradeAndRepair_AsAFractionOf_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Gross National Income Based on Purchasing Power Parity\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Gross National Income Based on Purchasing Power Parity Per Capita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossNationalIncome_PurchasingPowerParity_PerCapita\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/A-B\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICAgricultureHuntingForestryFishing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/F\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICConstruction_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/D\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICManufacturing_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/C-E\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICMiningManufacturingUtilities_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/J-P\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICOtherActivities_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/I\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICTransportStorageCommunications_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added, ISI cv 3.1/G-H\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_ISICWholesaleRetailTradeRestaurantsHotels_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity (real value): gross value added\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_GrossValueAdded_RealValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, area based delivery service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_AreaBasedDeliveryService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, asset and facility management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_AssetAndFacilityManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, audit and risk department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_AuditAndRiskDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, budget and treasury\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_BudgetAndTreasury\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, chief financial officer service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ChiefFinancialOfficerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, city manager operation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CityManagerOperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, city planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CityPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, community and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CommunityAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, community development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CommunityDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, community or social development department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CommunityOrSocialDevelopmentDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, corporate and human service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CorporateAndHumanService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, corporate and shared service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CorporateAndSharedService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, corporate service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_CorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, development planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_DevelopmentPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, disaster or emergency management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_DisasterOrEmergencyManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, durban ICC\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_DurbanICC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, economic development and agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EconomicDevelopmentAndAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, economic development and planning sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EconomicDevelopmentAndPlanningSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, economic development tourism and agriculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EconomicDevelopmentTourismAndAgriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, economic growth\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EconomicGrowth\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, economic opportunity and asset management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EconomicOpportunityAndAssetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, electricity sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ElectricitySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, electricity sector energy sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ElectricitySectorOrEnergySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, emergency services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EmergencyServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, energy and climate change sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EnergyAndClimateChangeSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, energy service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EnergyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, engineering service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, environment and agriculture management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EnvironmentAndAgricultureManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, environment and spatial planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EnvironmentAndSpatialPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, environmental resource management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_EnvironmentalResourceManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, executive mayor office service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ExecutiveMayorOfficeService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, executive or council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ExecutiveOrCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, executive support service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ExecutiveSupportService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_FinanceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, corporate service finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_FinanceServiceOrCorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, forensic investigation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ForensicInvestigationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, fresh produce market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_FreshProduceMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, future planning and resilience sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_FuturePlanningAndResilienceSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, governance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_Governance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, health department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_HealthDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, community service health service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_HealthServiceOrCommunityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, health service public safety and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_HealthServiceOrPublicSafetyAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, health service social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_HealthServiceOrSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, human settlement and housing sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_HumanSettlementAndHousingSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, informal settlement water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_InformalSettlementWaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, information and communication technology\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_InformationAndCommunicationTechnology\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_InfrastructureService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, engineering service infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_InfrastructureServiceOrEngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, joburg city theatre\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_JoburgCityTheatre\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, joburg market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_JoburgMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, johannesburg city parks and zoo service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_JohannesburgCityParksAndZooService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, johannesburg development agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_JohannesburgDevelopmentAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, johannesburg social housing company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_JohannesburgSocialHousingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, johannesburg tourism company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_JohannesburgTourismCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, mandela bay stadium\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MandelaBayStadium\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, metro police service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MetroPoliceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, metrobus service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MetrobusService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, metropolitan trading company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MetropolitanTradingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, municipal entities account\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MunicipalEntitiesAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, municipal manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MunicipalManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, municipal service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_MunicipalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, naledi and soutpan\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_NalediAndSoutpan\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, office city manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_OfficeCityManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, ombudsman office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_OmbudsmanOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, planning and human settlement and economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_PlanningAndHumanSettlementAndEconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, property management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_PropertyManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, provisioning and transport planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ProvisioningAndTransportPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, regional operations and coordination department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_RegionalOperationsAndCoordinationDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, road or stormwater\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_RoadOrStormwater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, roads and transport department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_RoadsAndTransportDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, safety and security service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SafetyAndSecurityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, sanitation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, shared services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SharedServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, social service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SocialService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, solid waste or environmental or health management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SolidWasteOrEnvironmentalOrHealthManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, speaker legislative arm of council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SpeakerLegislativeArmOfCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, special project and program\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SpecialProjectAndProgram\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, sport and recreation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_SportAndRecreation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, strategic management office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_StrategicManagementOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, strategic project\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_StrategicProject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, trading service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_TradingService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, transport and urban development authority\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_TransportAndUrbanDevelopmentAuthority\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, urban management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_UrbanManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, urban mobility service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_UrbanMobilityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, ushaka marine\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_UshakaMarine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, utility services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_UtilityServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, waste and fleet management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_WasteAndFleetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_WaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_WaterService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, sanitation service water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_WaterServiceOrSanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, ZA miscellaneous service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ZAMiscellaneousService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital in kind all, ZA other service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalInKindAll_ZAOtherService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, chief financial officer service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_ChiefFinancialOfficerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, city manager operation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_CityManagerOperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, community and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_CommunityAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, community or social development department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_CommunityOrSocialDevelopmentDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, corporate and human service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_CorporateAndHumanService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, corporate service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_CorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, durban ICC\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_DurbanICC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, economic development and agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EconomicDevelopmentAndAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, economic development and planning sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EconomicDevelopmentAndPlanningSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, economic growth\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EconomicGrowth\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, electricity sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_ElectricitySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, emergency services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EmergencyServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, energy service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EnergyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, engineering service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, environment and agriculture management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EnvironmentAndAgricultureManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, environment and spatial planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_EnvironmentAndSpatialPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, executive mayor office service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_ExecutiveMayorOfficeService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, executive support service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_ExecutiveSupportService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_FinanceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, fresh produce market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_FreshProduceMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, future planning and resilience sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_FuturePlanningAndResilienceSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, governance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_Governance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, health department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_HealthDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, community service health service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_HealthServiceOrCommunityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, health service public safety and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_HealthServiceOrPublicSafetyAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, human settlement and housing sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_HumanSettlementAndHousingSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_InfrastructureService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, metro police service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_MetroPoliceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, municipal manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_MunicipalManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, municipal service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_MunicipalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, naledi and soutpan\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_NalediAndSoutpan\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, office city manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_OfficeCityManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, planning and human settlement and economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_PlanningAndHumanSettlementAndEconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, property management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_PropertyManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, regional operations and coordination department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_RegionalOperationsAndCoordinationDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, roads and transport department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_RoadsAndTransportDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, safety and security service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_SafetyAndSecurityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, shared services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_SharedServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, social service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_SocialService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, solid waste or environmental or health management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_SolidWasteOrEnvironmentalOrHealthManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, sport and recreation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_SportAndRecreation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, strategic management office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_StrategicManagementOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, trading service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_TradingService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, urban mobility service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_UrbanMobilityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, ushaka marine\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_UshakaMarine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_WaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_WaterService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, sanitation service water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_WaterServiceOrSanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, ZA miscellaneous service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_ZAMiscellaneousService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital monetary allocation, ZA other service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalMonetaryAllocation_ZAOtherService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, area based delivery service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_AreaBasedDeliveryService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, asset and facility management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_AssetAndFacilityManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, audit and risk department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_AuditAndRiskDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, budget and treasury\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_BudgetAndTreasury\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, chief financial officer service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ChiefFinancialOfficerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, city manager operation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CityManagerOperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, city planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CityPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, community and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CommunityAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, community development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CommunityDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, corporate and human service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CorporateAndHumanService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, corporate and shared service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CorporateAndSharedService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, corporate service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_CorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, development planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_DevelopmentPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, disaster or emergency management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_DisasterOrEmergencyManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, durban ICC\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_DurbanICC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, economic development and agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EconomicDevelopmentAndAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, economic development and planning sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EconomicDevelopmentAndPlanningSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, economic development tourism and agriculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EconomicDevelopmentTourismAndAgriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, economic growth\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EconomicGrowth\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, economic opportunity and asset management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EconomicOpportunityAndAssetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, electricity sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ElectricitySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, electricity sector energy sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ElectricitySectorOrEnergySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, emergency services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EmergencyServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, energy and climate change sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EnergyAndClimateChangeSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, energy service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EnergyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, engineering service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, environment and agriculture management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EnvironmentAndAgricultureManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, environment and spatial planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EnvironmentAndSpatialPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, environmental resource management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_EnvironmentalResourceManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, executive mayor office service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ExecutiveMayorOfficeService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, executive or council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ExecutiveOrCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, executive support service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ExecutiveSupportService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_FinanceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, corporate service finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_FinanceServiceOrCorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, forensic investigation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ForensicInvestigationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, future planning and resilience sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_FuturePlanningAndResilienceSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, governance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_Governance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, health department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_HealthDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, community service health service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_HealthServiceOrCommunityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, health service public safety and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_HealthServiceOrPublicSafetyAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, health service social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_HealthServiceOrSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, human settlement and housing sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_HumanSettlementAndHousingSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, informal settlement water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_InformalSettlementWaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, information and communication technology\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_InformationAndCommunicationTechnology\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_InfrastructureService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, engineering service infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_InfrastructureServiceOrEngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, joburg city theatre\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_JoburgCityTheatre\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, joburg market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_JoburgMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, johannesburg city parks and zoo service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_JohannesburgCityParksAndZooService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, johannesburg development agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_JohannesburgDevelopmentAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, johannesburg social housing company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_JohannesburgSocialHousingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, johannesburg tourism company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_JohannesburgTourismCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, mandela bay stadium\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MandelaBayStadium\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, metro police service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MetroPoliceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, metrobus service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MetrobusService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, metropolitan trading company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MetropolitanTradingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, municipal entities account\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MunicipalEntitiesAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, municipal manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MunicipalManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, municipal service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_MunicipalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, naledi and soutpan\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_NalediAndSoutpan\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, office city manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_OfficeCityManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, ombudsman office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_OmbudsmanOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, property management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_PropertyManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, provisioning and transport planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ProvisioningAndTransportPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, regional operations and coordination department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_RegionalOperationsAndCoordinationDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, road or stormwater\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_RoadOrStormwater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, roads and transport department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_RoadsAndTransportDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, safety and security service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SafetyAndSecurityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, sanitation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, shared services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SharedServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, social service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SocialService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, solid waste or environmental or health management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SolidWasteOrEnvironmentalOrHealthManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, speaker legislative arm of council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SpeakerLegislativeArmOfCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, special project and program\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SpecialProjectAndProgram\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, sport and recreation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_SportAndRecreation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, strategic management office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_StrategicManagementOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, strategic project\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_StrategicProject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, trading service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_TradingService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, transport and urban development authority\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_TransportAndUrbanDevelopmentAuthority\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, urban management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_UrbanManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, urban mobility service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_UrbanMobilityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, ushaka marine\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_UshakaMarine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, utility services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_UtilityServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, waste and fleet management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_WasteAndFleetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_WaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_WaterService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, sanitation service water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_WaterServiceOrSanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, ZA miscellaneous service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ZAMiscellaneousService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial agency, ZA other service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialAgency_ZAOtherService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, area based delivery service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_AreaBasedDeliveryService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, asset and facility management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_AssetAndFacilityManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, audit and risk department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_AuditAndRiskDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, budget and treasury\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_BudgetAndTreasury\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, chief financial officer service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ChiefFinancialOfficerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, city manager operation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CityManagerOperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, city planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CityPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, community and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CommunityAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, community development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CommunityDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, corporate and human service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CorporateAndHumanService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, corporate and shared service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CorporateAndSharedService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, corporate service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_CorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, development planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_DevelopmentPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, disaster or emergency management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_DisasterOrEmergencyManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, durban ICC\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_DurbanICC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, economic development and agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EconomicDevelopmentAndAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, economic development and planning sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EconomicDevelopmentAndPlanningSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, economic development tourism and agriculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EconomicDevelopmentTourismAndAgriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, economic growth\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EconomicGrowth\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, economic opportunity and asset management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EconomicOpportunityAndAssetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, electricity sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ElectricitySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, electricity sector energy sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ElectricitySectorOrEnergySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, emergency services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EmergencyServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, energy and climate change sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EnergyAndClimateChangeSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, energy service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EnergyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, engineering service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, environment and agriculture management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EnvironmentAndAgricultureManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, environment and spatial planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EnvironmentAndSpatialPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, environmental resource management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_EnvironmentalResourceManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, executive mayor office service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ExecutiveMayorOfficeService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, executive or council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ExecutiveOrCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, executive support service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ExecutiveSupportService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_FinanceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, corporate service finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_FinanceServiceOrCorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, forensic investigation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ForensicInvestigationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, future planning and resilience sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_FuturePlanningAndResilienceSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, governance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_Governance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, health department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_HealthDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, community service health service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_HealthServiceOrCommunityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, health service public safety and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_HealthServiceOrPublicSafetyAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, health service social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_HealthServiceOrSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, human settlement and housing sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_HumanSettlementAndHousingSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, informal settlement water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_InformalSettlementWaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, information and communication technology\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_InformationAndCommunicationTechnology\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_InfrastructureService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, engineering service infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_InfrastructureServiceOrEngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, joburg city theatre\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_JoburgCityTheatre\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, joburg market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_JoburgMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, johannesburg city parks and zoo service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_JohannesburgCityParksAndZooService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, johannesburg development agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_JohannesburgDevelopmentAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, johannesburg social housing company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_JohannesburgSocialHousingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, johannesburg tourism company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_JohannesburgTourismCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, mandela bay stadium\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MandelaBayStadium\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, metro police service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MetroPoliceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, metrobus service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MetrobusService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, metropolitan trading company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MetropolitanTradingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, municipal entities account\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MunicipalEntitiesAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, municipal manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MunicipalManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, municipal service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_MunicipalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, naledi and soutpan\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_NalediAndSoutpan\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, office city manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_OfficeCityManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, ombudsman office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_OmbudsmanOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, property management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_PropertyManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, provisioning and transport planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ProvisioningAndTransportPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, regional operations and coordination department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_RegionalOperationsAndCoordinationDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, road or stormwater\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_RoadOrStormwater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, roads and transport department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_RoadsAndTransportDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, safety and security service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SafetyAndSecurityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, sanitation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, shared services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SharedServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, social service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SocialService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, solid waste or environmental or health management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SolidWasteOrEnvironmentalOrHealthManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, speaker legislative arm of council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SpeakerLegislativeArmOfCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, special project and program\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SpecialProjectAndProgram\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, sport and recreation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_SportAndRecreation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, strategic management office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_StrategicManagementOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, strategic project\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_StrategicProject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, trading service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_TradingService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, transport and urban development authority\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_TransportAndUrbanDevelopmentAuthority\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, urban management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_UrbanManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, urban mobility service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_UrbanMobilityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, ushaka marine\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_UshakaMarine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, utility services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_UtilityServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, waste and fleet management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_WasteAndFleetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_WaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_WaterService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, sanitation service water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_WaterServiceOrSanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, ZA miscellaneous service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ZAMiscellaneousService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital national provincial district, ZA other service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapitalNationalProvincialDistrict_ZAOtherService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, area based delivery service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_AreaBasedDeliveryService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, asset and facility management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_AssetAndFacilityManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, audit and risk department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_AuditAndRiskDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, budget and treasury\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_BudgetAndTreasury\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, chief financial officer service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ChiefFinancialOfficerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, city manager operation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CityManagerOperation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, city planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CityPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, community and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CommunityAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, community development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CommunityDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, community or social development department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CommunityOrSocialDevelopmentDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, corporate and human service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CorporateAndHumanService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, corporate and shared service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CorporateAndSharedService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, corporate service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_CorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, development planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_DevelopmentPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, disaster or emergency management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_DisasterOrEmergencyManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, durban ICC\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_DurbanICC\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, economic development and agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EconomicDevelopmentAndAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, economic development and planning sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EconomicDevelopmentAndPlanningSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, economic development tourism and agriculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EconomicDevelopmentTourismAndAgriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, economic growth\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EconomicGrowth\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, economic opportunity and asset management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EconomicOpportunityAndAssetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, electricity sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ElectricitySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, electricity sector energy sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ElectricitySectorOrEnergySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, emergency services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EmergencyServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, energy and climate change sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EnergyAndClimateChangeSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, energy service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EnergyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, engineering service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, environment and agriculture management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EnvironmentAndAgricultureManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, environment and spatial planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EnvironmentAndSpatialPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, environmental resource management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_EnvironmentalResourceManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, executive mayor office service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ExecutiveMayorOfficeService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, executive or council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ExecutiveOrCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, executive support service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ExecutiveSupportService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_FinanceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, corporate service finance service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_FinanceServiceOrCorporateService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, forensic investigation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ForensicInvestigationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, fresh produce market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_FreshProduceMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, future planning and resilience sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_FuturePlanningAndResilienceSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, governance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_Governance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, health department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_HealthDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, community service health service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_HealthServiceOrCommunityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, health service public safety and emergency service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_HealthServiceOrPublicSafetyAndEmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, health service social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_HealthServiceOrSocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, human settlement and housing sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_HumanSettlementAndHousingSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, informal settlement water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_InformalSettlementWaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, information and communication technology\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_InformationAndCommunicationTechnology\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_InfrastructureService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, engineering service infrastructure service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_InfrastructureServiceOrEngineeringService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, joburg city theatre\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_JoburgCityTheatre\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, joburg market\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_JoburgMarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, johannesburg city parks and zoo service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_JohannesburgCityParksAndZooService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, johannesburg development agency\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_JohannesburgDevelopmentAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, johannesburg social housing company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_JohannesburgSocialHousingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, johannesburg tourism company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_JohannesburgTourismCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, mandela bay stadium\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MandelaBayStadium\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, metro police service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MetroPoliceService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, metrobus service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MetrobusService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, metropolitan trading company\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MetropolitanTradingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, municipal entities account\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MunicipalEntitiesAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, municipal manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MunicipalManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, municipal service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_MunicipalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, naledi and soutpan\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_NalediAndSoutpan\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, office city manager service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_OfficeCityManagerService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, ombudsman office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_OmbudsmanOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, planning and human settlement and economic development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_PlanningAndHumanSettlementAndEconomicDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, property management department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_PropertyManagementDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, provisioning and transport planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ProvisioningAndTransportPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, regional operations and coordination department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_RegionalOperationsAndCoordinationDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, road or stormwater\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_RoadOrStormwater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, roads and transport department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_RoadsAndTransportDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, safety and security service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SafetyAndSecurityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, sanitation service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, shared services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SharedServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, social development\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SocialDevelopment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, social service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SocialService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, solid waste or environmental or health management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SolidWasteOrEnvironmentalOrHealthManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, speaker legislative arm of council service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SpeakerLegislativeArmOfCouncilService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, special project and program\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SpecialProjectAndProgram\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, sport and recreation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_SportAndRecreation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, strategic management office\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_StrategicManagementOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, strategic project\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_StrategicProject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, trading service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_TradingService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, transport and urban development authority\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_TransportAndUrbanDevelopmentAuthority\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, urban management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_UrbanManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, urban mobility service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_UrbanMobilityService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, ushaka marine\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_UshakaMarine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, utility services department\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_UtilityServicesDepartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, waste and fleet management\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_WasteAndFleetManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, water and waste service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_WaterAndWasteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_WaterService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, sanitation service water service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_WaterServiceOrSanitationService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, ZA miscellaneous service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ZAMiscellaneousService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of economic activity: transfers and subsidy capital, ZA other service\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_TransfersAndSubsidyCapital_ZAOtherService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Scheduled Caste Sub Plan fund utilised (%)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_UtilisedScheduledCasteSubPlanFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Tribal Sub Plan fund utilised (%)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_EconomicActivity_UtilisedTribalSubPlanFund\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CO2 Emissions Per Capita\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Emissions_CarbonDioxide_PerCapita\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount expenditure activity gross domestic production\",\"types\":[\"MeasurementDenominatorEnum\",\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GDP expenditure discrepancy percentage\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_DiscrepancyExpenditure_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Exports of goods and services as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_ExportsGoodsAndServices_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Government final consumption expenditure as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_GovernmentFinalConsumption_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Gross domestic expenditure as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_GrossDomesticExpenditure_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Gross fixed capital formation as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_GrossFixedCapitalFormation_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Imports of goods and services as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_ImportsGoodsAndServices_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Changes in inventories as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_InventoryChanges_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Final consumption expenditure by NPISH as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_NonProfitInstitutionsServingHouseholds_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Private final consumption expenditure as a percentage of GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_ExpenditureActivity_GrossDomesticProduction_PrivateFinalConsumption_AsAFractionOf_Amount_ExpenditureActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Barley Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_BarleyForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of Coarse Cereals\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_CoarseCereal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Corn Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_CornForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Silage Produced\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_CornForSilageOrGreenchop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Cotton Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Cotton\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Beans Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_DryEdibleBeans\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Durum Wheat Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_DurumWheatForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of farm inventory: flaxseed\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Flaxseed\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of food grains\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_FoodGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Forage Produced\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Forage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of farm inventory: grain\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Grain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of jute and mesta\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_JuteOrMesta\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Oats Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_OatsForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of oilseeds\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Oilseeds\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Spring Wheat Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_OtherSpringWheatForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Peanuts Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_PeanutsForNuts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Pima Cotton Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_PimaCotton\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of pulses\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Pulses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of farm inventory: rapeseed\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Rapeseed\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Rice Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Rice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Rice and wheat produced annually per unit area  (Kg/Ha)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_RiceOrWheat_AsAFractionOf_Area_Farm_RiceOrWheat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of farm inventory: rye\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Rye\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sorghum Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_SorghumForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sorghum for Silage or Greenchop Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_SorghumForSilageOrGreenchop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sugarbeets Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_SugarbeetsForSugar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of sugarcane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Sugarcane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sunflowerseed Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_SunflowerSeed\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Upland Cotton Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_UplandCotton\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of Wheat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_Wheat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of farm inventory: wheat excluding durum\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_WheatExcludingDurum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Wheat Grown\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_FarmInventory_WheatForGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to extractive families\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_ExtractiveFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to fishing families\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_FishingFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to gypsy families\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_GypsyFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to families in emergency care\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_InEmergencyCare\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to indigenous families\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_IndigenousFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to quilombola families\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_QuilombolaFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kilograms of food delivered to families collecting recyclable material\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_RecyclableMaterialCollectorsFamily\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOW6YAQAAAP//AQAA///mGILVUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
#> [15] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Kilograms of food delivered to settled/camped families\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Food_SettledInCamps\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Financial resources made available to beneficiary families of the Rural Development Program\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Household_BrazilRuralDevelopmentProgram_FinancialBenefit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: economic adjustment assistance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_EconomicAdjustmentAssistance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: program planning\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_ProgramPlanning\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: public works\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_PublicWorks\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: regional innovation strategies\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_RegionalInnovationStrategies\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: research\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_Research\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: research national technical assistance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_ResearchNationalTechnicalAssistance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: technical assistance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_TechnicalAssistance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of investment: trade adjustment assistance\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Investment_TradeAdjustmentAssistance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Fraction of Electricity Production from Nuclear Sources\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Production_ElectricityFromNuclearSources_AsFractionOf_Amount_Production_Energy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Fraction of Electricity Production from Oil, Gas and Coal Sources.\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Production_ElectricityFromOilGasOrCoalSources_AsFractionOf_Amount_Production_Energy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount of production: energy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Production_Energy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Inward Remittances\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Remittance_InwardRemittance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Inward Remittances as a Percentage of Nominal Gross Domestic Production\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Remittance_InwardRemittance_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Outward Remittances\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Remittance_OutwardRemittance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stock Value\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Stock\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stock Value as a Percentage of Nominal GDP\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Amount_Stock_AsFractionOf_Amount_EconomicActivity_GrossDomesticProduction_Nominal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): additives oxygenates\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_AdditivesOxygenates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): bio jet kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BioJetKerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): gasoline jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_GasolineJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): UN other hydrocarbons\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_OtherHydrocarbons\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): refinery feedstocks\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_RefineryFeedstocks\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stocks of fuel (annual change): white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"AnnualChange_Stocks_Fuel_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of agriculture production sector  \",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of construction sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ConstructionSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of agriculture production sector crop production \",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_CropProductionSector_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of agriculture production sector fishing \",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Fishing_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of agriculture production sector forestry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Forestry_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of total Gross Domestic Production\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_GrossDomesticProduction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of total Industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of crude petroleum & natural gas of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_CrudePetroleumAndNaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of manufacturing of industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of basic metal iron & steel of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_BasicMetalIronAndSteel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of cement of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_Cement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of chemical & pharmaceutical products of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_ChemicalAndPharmaceuticalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of electrical & electronics of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_ElectricalAndElectronics\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of cood beverage & tobacco of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_FoodBeverageAndTobacco\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of motor vehicles & assembly of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_MotorVehiclesAndAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of non metallic products of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_NonMetallicProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of oil refining of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_OilRefining\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of other manufacturing of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_OtherManufacturing\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of plastic & rubber products of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_PlasticAndRubberProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of pulp paper & paper products of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_PulpPaperAndPaperProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of textile apparel & footwear of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_TextileApparelAndFootwear\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of wood & wood products of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Manufacturing_WoodAndWoodProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of solid minerals of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Mining\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of coal mining of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Mining_CoalMining\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of metal ores of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Mining_MetalOres\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of quarrying & other mining of general industry sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_IndustrySector_Mining_QuarryingAndOtherMining\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of agriculture production sector livestock \",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Livestock_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales amount of economic activities\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from all other general merchandise stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_AllOtherGeneralMerchandiseStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from all other home furnishings stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_AllOtherHomeFurnishingsStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales for automobile dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_AutomobileDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from automobile and other motor vehicle dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_AutomobileDealersOtherMotorVehicleDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from automotive parts, accessories and tire stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_AutomotivePartsAccessoriesAndTireStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from beer, wine and liquor stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_BeerWineAndLiquorStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from book stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_BookStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from building material and garden equipment and supplies dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_BuildingMaterialAndGardenEquipmentAndSuppliesDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from building material and supplies dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_BuildingMaterialAndSuppliesDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from clothing and clothing accessories stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_ClothingAndClothingAccessStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from clothing stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_ClothingStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from department stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_DepartmentStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from department stores excluding discount department stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_DepartmentStoresExcludingDiscountDepartmentStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from discount department stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_DiscountDeptStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from drinking places\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_DrinkingPlaces\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales for electronic shopping and mail-order houses\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_ElectronicShoppingAndMailOrderHouses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from electronics stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_ElectronicsStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from family clothing stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FamilyClothingStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from floor covering stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FloorCoveringStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from food and beverage stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FoodAndBeverageStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from food services and drinking places\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FoodServicesAndDrinkingPlaces\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from fuel dealerships\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FuelDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from full service restaurants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FullServiceRestaurants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from furniture and furnishings stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FurnitureFurnishingsStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from furniture, furnishings, electronics and appliance stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FurnitureFurnishingsStores_ElectronicsApplianceStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from furniture stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_FurnitureStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales for gasoline stations\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_GasolineStations\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from general merchandise retailers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_GeneralMerchandiseRetailers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales for general merchandise stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_GeneralMerchandiseStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales amount of economic activities in general merchandise stores, warehouse clubs and supercenters\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_GeneralMerchandiseStores_WarehouseClubsAndSupercenters\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from gift, novelty and souvenir stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_GiftNoveltyAndSouvenirStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from grocery stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_GroceryStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from hardware stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_HardwareStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from health and personal care stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_HealthAndPersonalCareStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from hobby, toy and game stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_HobbyToyAndGameStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from home furnishings stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_HomeFurnishingsStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from household appliance stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_HouseholdApplianceStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from jewelry stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_JewelryStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from limited service eating places\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_LimitedServiceEatingPlaces\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from men's clothing stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_MensClothingStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from miscellaneous store retailers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_MiscellaneousStoreRetailers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from auto parts dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_MotorVehicleAndPartsDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from new car dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_NewCarDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from nonstore retailers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_NonstoreRetailers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from office supplies and stationery stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_OfficeSuppliesAndStationeryStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from office supplies, stationery and gift stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_OfficeSuppliesStationeryAndGiftStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from other clothing stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_OtherClothingStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from other general merchandise stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_OtherGeneralMerchandiseStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from paint and wallpaper stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_PaintAndWallpaperStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from pharmacies and drug stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_PharmaciesAndDrugStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from restaurants and other eating places\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RestaurantsAndOtherEatingPlaces\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from retail and food services\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RetailAndFoodServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from retail and food services excluding gasoline stations\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RetailAndFoodServicesExcludingGasolineStations\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from retail and food services excluding motor vehicle parts\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RetailAndFoodServicesExcludingMotorVehicleParts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from retail and food services excluding motor vehicle parts and gasoline stations\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RetailAndFoodServicesExcludingMotorVehiclePartsAndGasolineStations\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales in the retail services sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RetailServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from retail services excluding motor vehicle parts dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_RetailServicesExcludingMotorVehiclePartsDealer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from shoe stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_ShoeStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from sporting goods, hobby, musical instrument and book stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_SportingGoodsHobbyMusicalInstrumentAndBookStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from sporting goods stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_SportingGoodsStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from supermarkets and other grocery stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_SupermarketsAndOtherGroceryStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from in used car dealers\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_UsedCarDealers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from used merchandise stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_UsedMerchandiseStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from warehouse clubs and superstores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_WarehouseClubsAndSuperstores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from women clothing stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales_WomenClothingStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual sales from electronics appliance stores\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Sales__ElectronicsApplianceStores\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of total service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Accommodation & Food Services of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_AccommodationAndFoodSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of administrative & support services business services of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_AdministrativeAndSupportServicesBusinessServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of arts entertainment & recreation of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_ArtsEntertainmentAndRecreation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of education of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Education\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Finance & Insurance of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_FinanceAndInsurance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Financial Institutions of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_FinanceAndInsurance_FinancialInstitutions\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Insurance of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_FinanceAndInsurance_Insurance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of human health & social services of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_HumanHealthAndSocialServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of information & communication of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_InformationAndCommunication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of broadcasting of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_InformationAndCommunication_Broadcasting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of motion pictures sound recording & music of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_InformationAndCommunication_MotionPicturesSoundRecordingAndMusic\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of publishing of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_InformationAndCommunication_Publishing\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of telecommunication & information services of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_InformationAndCommunication_TelecommunicationAndInformationServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of other services of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_OtherServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of professional scientific & technical services of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_ProfessionalScientificAndTechnicalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of public administration of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_PublicAdministration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of real estate of service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_RealEstate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of air transport of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation_AirTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of post & courier services of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation_PostAndCourierServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of rail transport & pipelines of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation_RailTransportAndPipelines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of road transport of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation_RoadTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of transport services of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation_TransportServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of water transport of transport sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Transportation_WaterTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Utilities of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Utilities\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Electricity  Gas Steam & Air Conditioner of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Utilities_ElectricityGasSteamAndAirConditioner\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of Water Supply  Sewage & Waste Management of Service sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_ServiceSector_Utilities_WaterSupplySewerageWasteManagement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of trading sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_EconomicActivity_Trading\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Availability of electricity\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Electricity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Per capita availability of electricity\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Electricity_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Acetaldehyde, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Acetaldehyde_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: agriculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: agriculture, methane (As fraction of annual amount emissions agriculture)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Agriculture_Methane_AsAFractionOf_Annual_Amount_Emissions_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Ammonia, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Ammonia_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Arsenic, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Arsenic_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Asbestos, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Asbestos_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Asbestos, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Asbestos_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Asbestos, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Asbestos_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Asbestos, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Asbestos_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Asbestos, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Asbestos_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Benzene, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Benzene_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cadmium, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cadmium_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: carbon dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: carbon dioxide (per capita)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: carbon dioxide (As fraction of gross domestic product)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_PerGrossDomesticProduct\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Dioxide, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonDioxide_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: carbon monoxide (per capita)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Carbon Monoxide, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_CarbonMonoxide_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chemical and Allied Product Manufacturing, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chemical and Allied Product Manufacturing, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: chemical and allied product manufacturing, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ChemicalAndAlliedProductManufacturing_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorane, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorane_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chlorine, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chlorine_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chloroform, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chloroform_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Chromium(6+), MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Chromium_6_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: climate trace other agricultural soil emissions\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ClimateTraceOtherAgriculturalSoilEmissions\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: climate trace other agricultural soil emissions, nitrous oxide (As fraction of annual amount emissions climate trace other agricultural soil emissions)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_ClimateTraceOtherAgriculturalSoilEmissions_NitrousOxide_AsAFractionOf_Annual_Amount_Emissions_ClimateTraceOtherAgriculturalSoilEmissions\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Coal Tar, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Coal_Tar_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Coal Tar, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Coal_Tar_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Coal Tar, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Coal_Tar_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Coal Tar, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Coal_Tar_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Coal Tar, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Coal_Tar_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cobalt, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cobalt_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Cyanide, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Cyanide_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions EPA Fuel Combustion Other, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions EPA Fuel Combustion Other, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA fuel combustion other, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAFuelCombustionOther_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions EPA Miscellaneous Emission Source, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions EPA Miscellaneous EmissionSource, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA miscellaneous emission source, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAMiscellaneousEmissionSource_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions EPA Other Industrial Processes, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions EPA Other Industrial Processes, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: EPA other industrial processes, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_EPAOtherIndustrialProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fluorane, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Fluorane_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Formaldehyde, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Formaldehyde_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fuel Combustion Electric Utility, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fuel Combustion Electric Utility, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion electric utility, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionElectricUtility_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fuel Combustion Industrial, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Fuel Combustion Industrial, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: fuel combustion industrial, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_FuelCombustionIndustrial_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: greenhouse gas (per capita)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_GreenhouseGas_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Hexane, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Hexane_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Industrial and Other Processes, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Industrial and Other Processes, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: industrial and other processes, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_IndustrialAndOtherProcesses_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Lead, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Lead_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Manganese, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOc5YAQAAAP//AQAA//+Yg5ryUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
#> [16] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Annual Amount Emissions Manganese, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Manganese_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Mercury, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Mercury_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Metals Processing, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Metals Processing, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: metals processing, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_MetalsProcessing_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methane, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methane_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Methanol, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Methanol_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Naphthalene, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Naphthalene_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: natural resource, biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: natural resource, biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: natural resource, biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: natural resource, biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NaturalResource_BiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nickel, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Nickel_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nitrous Oxide, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NitrousOxide_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nitrous Oxide, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NitrousOxide_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nitrous Oxide, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NitrousOxide_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nitrous Oxide, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NitrousOxide_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nitrous Oxide, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NitrousOxide_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Nitrous Oxide, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NitrousOxide_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, Ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, Carbon Monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, Oxides of Nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, PM10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, PM2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, Sulfur Dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions, NonBiogenic EmissionSource, Volatile Organic Compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Non-Road Engines and Vehicles, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Non-Road Engines and Vehicles, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: non road engines and vehicles, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_NonRoadEnginesAndVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions On-Road Vehicles, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions On-Road Vehicles, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: on road vehicles, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OnRoadVehicles_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: oxides of nitrogen (per capita)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxides Of Nitrogen, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfNitrogen_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: oxides of sulfur\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfSulfur\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: oxides of sulfur (per capita)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_OxidesOfSulfur_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Oxo(Oxochromiooxy)Chromium, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Oxo_Oxochromiooxy_Chromium_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM10, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM10_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PM2.5, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PM2.5_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Petroleum and Related Industries, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Petroleum and Related Industries, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: petroleum and related industries, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PetroleumAndRelatedIndustries_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phenol, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phenol_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Phosphorus, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Phosphorus_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Prescribed Fire, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Prescribed Fire, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: prescribed fire, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_PrescribedFire_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Pyrene, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Pyrene_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Selenium, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Selenium_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Solvent Utilization, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Solvent Utilization, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: solvent utilization, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SolventUtilization_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Stationary Fuel Combustion, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Stationary Fuel Combustion, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: stationary fuel combustion, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StationaryFuelCombustion_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Storage and Transport, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Storage and Transport, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: storage and transport, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_StorageAndTransport_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfane, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Sulfane_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Sulfur Dioxide, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_SulfurDioxide_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Toluene, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Toluene_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Transportation, NonBiogenicEmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Transportation, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: transportation, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Transportation_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: volatile organic compound (per capita)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_AsAFractionOf_Count_Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, ExternalCombustion (1)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_1_ExternalCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, StationarySourceFuelCombustion (21)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_21_StationarySourceFuelCombustion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, MobileSources (22)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_22_MobileSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, IndustrialProcesses (23)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_23_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, SolventUtilization (24)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_24_SolventUtilization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, StorageAndTransport (25)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_25_StorageAndTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, WasteDisposalTreatmentAndRecovery (26)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_26_WasteDisposalTreatmentAndRecovery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, NaturalSources (27)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_27_NaturalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, MiscellaneousAreaSources (28)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_28_MiscellaneousAreaSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, InternalCombustionEngines (2)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_2_InternalCombustionEngines\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, IndustrialProcesses (3)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_3_IndustrialProcesses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, PetroleumAndSolventEvaporation (4)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_4_PetroleumAndSolventEvaporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, WasteDisposal (5)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_5_WasteDisposal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Volatile Organic Compound, MACTSourceCategories (6)\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_VolatileOrganicCompound_SCC_6_MACTSourceCategories\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Waste Disposal and Recycling, NonBiogenic EmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Waste Disposal and Recycling, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: waste disposal and recycling, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_WasteDisposalAndRecycling_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, ammonia\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_Ammonia\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Wildfire, NonBiogenicEmissionSource, Black Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_BlackCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, carbon monoxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_CarbonMonoxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Amount Emissions Wildfire, NonBiogenic EmissionSource, Organic Carbon\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OrganicCarbon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, oxides of nitrogen\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_OxidesOfNitrogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, PM 10\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, PM 2.5\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_PM2.5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, sulfur dioxide\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_SulfurDioxide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual amount of emissions: wildfire, non biogenic emission source, volatile organic compound\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_Emissions_Wildfire_NonBiogenicEmissionSource_VolatileOrganicCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of Coarse Cereals\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_CoarseCereal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of cotton\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Cotton\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Fish production\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Fish\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Produciton of food grains\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_FoodGrain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of fruits\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Fruits\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of jute and mesta\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_JuteOrMesta\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of oilseeds\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Oilseeds\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of pulses\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Pulses\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of rice\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Rice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of sugarcane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Sugarcane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of vegetables\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Vegetables\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production of Wheat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Wheat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Wool production\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Amount_FarmInventory_Wool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, bituminous coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_BituminousCoal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_Coal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, lignite coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_LigniteCoal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum coke, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumCoke_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum liquids, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum liquids, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum liquids, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum liquids, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, petroleum liquids, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quality of fossil fuels in electricity generation, ash content, subbituminous coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_AshContent_Fuel_ForElectricityGeneration_SubbituminousCoal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, coke plants, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_CokePlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, commercial and institutional, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_CommercialAndInstitutional\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ash content, other industrial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_AshContent_Coal_For_OtherIndustrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, coke plants, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_CokePlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, commercial and institutional, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_CommercialAndInstitutional\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Price, other industrial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Coal_OtherIndustrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation, bituminous coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation, bituminous coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation, bituminous coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), bituminous coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_BituminousCoal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation, coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation, coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_Coal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), lignite coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_LigniteCoal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), natural gas, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_NaturalGas_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum coke, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumCoke_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), petroleum liquids, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOQ7YAQAAAP//AQAA//+NCEJZUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
#> [17] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average cost of fossil fuels for electricity generation (per Btu), subbituminous coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_Cost_Fuel_ForElectricityGeneration_SubbituminousCoal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, coke plants, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_CokePlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, commercial and institutional, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_CommercialAndInstitutional\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Heat content, other industrial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_HeatContent_Coal_For_OtherIndustrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Average Retail Price of Electricity\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_RetailPrice_Electricity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average retail price of electricity, commercial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_RetailPrice_Electricity_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average retail price of electricity, industrial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_RetailPrice_Electricity_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average retail price of electricity, other, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_RetailPrice_Electricity_OtherSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average retail price of electricity, residential, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_RetailPrice_Electricity_Residential\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Average retail price of electricity, transportation, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_RetailPrice_Electricity_Transportation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, coke plants, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_CokePlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, commercial and institutional, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_CommercialAndInstitutional\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sulfur content, other industrial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Average_SulfurContent_Coal_For_OtherIndustrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: auto producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_AutoProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: combustible fuel, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_CombustibleFuel_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: combustible fuel, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_CombustibleFuel_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: combustible fuel, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_CombustibleFuel_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: conventional hydroelectric\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_ConventionalHydroelectric\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: geothermal, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Geothermal_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: geothermal, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Geothermal_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: geothermal, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Geothermal_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: main activity producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_MainActivityProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: non renewable waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_NonRenewableWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: nuclear\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Nuclear\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: nuclear, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Nuclear_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: nuclear, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Nuclear_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: nuclear, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Nuclear_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: UN other fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_OtherFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: UN other fuel, auto producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_OtherFuel_AutoProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: UN other fuel, main activity producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_OtherFuel_MainActivityProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: pumped hydro\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_PumpedHydro\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: pumped hydro, auto producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_PumpedHydro_AutoProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: pumped hydro, main activity producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_PumpedHydro_MainActivityProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: renewable energy\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_RenewableEnergy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: small hydroelectric\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SmallHydroelectric\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Solar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar photovoltaic\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SolarPhotovoltaic\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar photovoltaic, auto producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SolarPhotovoltaic_AutoProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar photovoltaic, main activity producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SolarPhotovoltaic_MainActivityProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar thermal, auto producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SolarThermal_AutoProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar thermal, main activity producer\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_SolarThermal_MainActivityProducer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Solar_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Solar_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: solar, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Solar_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: tidal, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Tidal_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: tidal, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Tidal_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: tidal, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Tidal_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: EIA water, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Water_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: EIA water, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Water_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: EIA water, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Water_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: wind\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Wind\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: wind, auto producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Wind_AutoProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: wind, electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Wind_ElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of electricity: wind, main activity producer electricity power plants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Electricity_Wind_MainActivityProducerElectricityPowerPlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of fuel: crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Fuel_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of fuel: crude oil, refinery\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Fuel_CrudeOil_Refinery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of fuel: liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Fuel_LiquefiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual capacity of fuel: petroleum liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Capacity_Fuel_PetroleumLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: bricks construction industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_BricksConstructionIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: bricks construction industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_BricksConstructionIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: bricks construction industry, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_BricksConstructionIndustry_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: bricks construction industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_BricksConstructionIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: bricks construction industry, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_BricksConstructionIndustry_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: cement construction industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CementConstructionIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: cement construction industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CementConstructionIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: cement construction industry, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CementConstructionIndustry_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: cement construction industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CementConstructionIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: cement construction industry, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CementConstructionIndustry_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: chemical petrochemical industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ChemicalPetrochemicalIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: chemical petrochemical industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ChemicalPetrochemicalIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: chemical petrochemical industry, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ChemicalPetrochemicalIndustry_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: chemical petrochemical industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ChemicalPetrochemicalIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: coal mines, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CoalMines_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: coal mines, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CoalMines_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: coal mines, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CoalMines_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: coal mines, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CoalMines_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: coke ovens, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CokeOvens_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: coke ovens, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CokeOvens_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, coke plants, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CokePlants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, commercial and institutional, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_CommercialAndInstitutional\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: electricity generation, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricityGeneration_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: electricity generation, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricityGeneration_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: electricity generation, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricityGeneration_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: electricity generation, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricityGeneration_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: electricity generation, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_ElectricityGeneration_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: fertilizer industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_FertilizerIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: fertilizer industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_FertilizerIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: fertilizer industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_FertilizerIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: india EDM unspecified sector, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IndiaEDM_UnspecifiedSector_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: india EDM unspecified sector, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IndiaEDM_UnspecifiedSector_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: india EDM unspecified sector, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IndiaEDM_UnspecifiedSector_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: india EDM unspecified sector, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IndiaEDM_UnspecifiedSector_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: india EDM unspecified sector, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IndiaEDM_UnspecifiedSector_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: iron steel, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IronSteel_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: iron steel, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IronSteel_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: iron steel, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IronSteel_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: iron steel, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IronSteel_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: iron steel, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_IronSteel_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: non ferrous metals industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_NonFerrousMetalsIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: non ferrous metals industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_NonFerrousMetalsIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: non ferrous metals industry, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_NonFerrousMetalsIndustry_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: non ferrous metals industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_NonFerrousMetalsIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: non ferrous metals industry, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_NonFerrousMetalsIndustry_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, other industrial, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_OtherIndustrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: paper pulp print industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_PaperPulpPrintIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: paper pulp print industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_PaperPulpPrintIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: paper pulp print industry, middlings coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_PaperPulpPrintIndustry_MiddlingsCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: paper pulp print industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_PaperPulpPrintIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: textile and leather industry, coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_TextileAndLeatherIndustry_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: textile and leather industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_TextileAndLeatherIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: textile and leather industry, raw coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_TextileAndLeatherIndustry_RawCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of coal: textile and leather industry, washed coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Coal_TextileAndLeatherIndustry_WashedCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption of commercial building with energy source fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_CommercialBuilding_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual Electricity Consumption\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: agriculture\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_Agriculture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: biogas production, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_BiogasProduction_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: blast furnaces, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_BlastFurnaces_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: briquetting plants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_BriquettingPlants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: charcoal plants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_CharcoalPlants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: chemical petrochemical industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_ChemicalPetrochemicalIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: coal liquefaction plants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_CoalLiquefactionPlants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: coal mines, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_CoalMines_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: coke ovens, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_CokeOvens_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: commerce and public services\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_CommerceAndPublicServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: construction industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_ConstructionIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: electric boilers, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_ElectricBoilers_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: electricity generation, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_ElectricityGeneration_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: energy industry, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_EnergyIndustry_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: food and tobacco industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_FoodAndTobaccoIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: gas to liquid plants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_GasToLiquidPlants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: gas works, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_GasWorks_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: heat pumps, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_HeatPumps_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: households\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_Households\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: india EDM unspecified sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_IndiaEDM_UnspecifiedSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_Industry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: industry, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_Industry_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: iron steel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_IronSteel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: liquefied natural gas plants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_LiquifiedNaturalGasPlants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: machinery industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_MachineryIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: manufacturing\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_Manufacturing\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: mining and quarrying industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_MiningAndQuarryingIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: non ferrous metals industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_NonFerrousMetalsIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: non metallic minerals industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_NonMetallicMineralsIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: nuclear fuel processing, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_NuclearFuelProcessing_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: oil gas extraction, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_OilGasExtraction_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: oil refineries, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_OilRefineries_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: UN other industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_OtherIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: UN other manufacturing industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_OtherManufacturingIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: UN other sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_OtherSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: UN other transport\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_OtherTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: paper pulp print industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_PaperPulpPrintIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: pipeline transport\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_PipelineTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: pump storage plants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_PumpStoragePlants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: rail transport\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_RailTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: road transport\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_RoadTransport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: textile and leather industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_TextileAndLeatherIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: transport equipment industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_TransportEquipmentIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: transport industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_TransportIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: UN unspecified sector\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_UnspecifiedSector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of electricity: wood and wood products industry\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Electricity_WoodAndWoodProductsIndustry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: agriculture, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Agriculture_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: agriculture, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Agriculture_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: agriculture, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Agriculture_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: auto producer combined heat power plants, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_AutoProducerCombinedHeatPowerPlants_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: auto producer electricity power plants, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_AutoProducerElectricityPowerPlants_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: auto producer electricity power plants, solar thermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_AutoProducerElectricityPowerPlants_SolarThermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: auto producer heat power plants, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_AutoProducerHeatPowerPlants_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: auto producer heat power plants, solar thermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_AutoProducerHeatPowerPlants_SolarThermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: biogas production, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_BiogasProduction_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: blast furnaces, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_BlastFurnaces_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: briquetting plants, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_BriquettingPlants_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: chemical petrochemical industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ChemicalPetrochemicalIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: chemical petrochemical industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ChemicalPetrochemicalIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: chemical petrochemical industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ChemicalPetrochemicalIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: coal liquefaction plants, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CoalLiquefactionPlants_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: coal mines, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CoalMines_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: coke ovens, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CokeOvens_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: commerce and public services, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommerceAndPublicServices_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: commerce and public services, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommerceAndPublicServices_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: commerce and public services, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommerceAndPublicServices_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption of energy with energy source c b e c s_ all major fuels, consuming sector commercial building\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommercialBuilding_CBECSAllMajorFuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption of energy with energy source district heat, consuming sector commercial building\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommercialBuilding_DistrictHeat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption of energy with energy source electricity, consuming sector commercial building\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommercialBuilding_Electricity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption of energy with energy source fuel oil, consuming sector commercial building\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommercialBuilding_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption of energy with energy source natural gas, consuming sector commercial building\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_CommercialBuilding_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: construction industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ConstructionIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: construction industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ConstructionIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: construction industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ConstructionIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: electricity generation, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ElectricityGeneration_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: electricity generation, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ElectricityGeneration_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: electricity generation, heat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ElectricityGeneration_Heat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: electricity generation, solar thermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_ElectricityGeneration_SolarThermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: energy industry, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_EnergyIndustry_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: food and tobacco industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_FoodAndTobaccoIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: food and tobacco industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_FoodAndTobaccoIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: food and tobacco industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_FoodAndTobaccoIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: fuel transformation industry, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_FuelTransformationIndustry_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: fuel transformation industry, solar thermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_FuelTransformationIndustry_SolarThermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: gas works, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_GasWorks_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: households, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Households_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: households, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Households_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: households, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Households_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: industry, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Industry_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: iron steel, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_IronSteel_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: iron steel, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_IronSteel_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: iron steel, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_IronSteel_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: liquefied natural gas plants, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_LiquifiedNaturalGasPlants_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: machinery industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MachineryIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: machinery industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MachineryIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: machinery industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MachineryIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: main activity producer combined heat power plants, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MainActivityProducerCombinedHeatPowerPlants_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: main activity producer electricity power plants, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MainActivityProducerElectricityPowerPlants_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: main activity producer electricity power plants, solar thermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MainActivityProducerElectricityPowerPlants_SolarThermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: main activity producer heat power plants, geothermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MainActivityProducerHeatPowerPlants_Geothermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: main activity producer heat power plants, solar thermal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MainActivityProducerHeatPowerPlants_SolarThermal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: manufacturing, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Manufacturing_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: manufacturing, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Manufacturing_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: manufacturing, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_Manufacturing_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: mining and quarrying industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MiningAndQuarryingIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: mining and quarrying industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_MiningAndQuarryingIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: non ferrous metals industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_NonFerrousMetalsIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: non ferrous metals industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_NonFerrousMetalsIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: non metallic minerals industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_NonMetallicMineralsIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: non metallic minerals industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_NonMetallicMineralsIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: non metallic minerals industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_NonMetallicMineralsIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: nuclear fuel processing, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_NuclearFuelProcessing_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: oil gas extraction, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OilGasExtraction_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: oil refineries, heat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OilRefineries_Heat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: oil refineries, refinery, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OilRefineries_Refinery_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other manufacturing industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherManufacturingIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other manufacturing industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherManufacturingIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other manufacturing industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherManufacturingIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other sector, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherSector_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other sector, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherSector_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other sector, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherSector_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN other transport, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_OtherTransport_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: paper pulp print industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_PaperPulpPrintIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: paper pulp print industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_PaperPulpPrintIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: textile and leather industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TextileAndLeatherIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: textile and leather industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TextileAndLeatherIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: textile and leather industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TextileAndLeatherIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: transport equipment industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TransportEquipmentIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: transport equipment industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TransportEquipmentIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: transport equipment industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TransportEquipmentIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: transport industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_TransportIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN unspecified sector, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_UnspecifiedSector_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN unspecified sector, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_UnspecifiedSector_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: UN unspecified sector, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_UnspecifiedSector_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: wood and wood products industry, geothermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_WoodAndWoodProductsIndustry_Geothermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: wood and wood products industry, heat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_WoodAndWoodProductsIndustry_Heat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of energy: wood and wood products industry, solar thermal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Energy_WoodAndWoodProductsIndustry_SolarThermal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: agriculture, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Agriculture_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: EIA anthracite coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AnthraciteCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, kerosene jet fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_KeroseneJetFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer combined heat power plants, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerCombinedHeatPowerPlants_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, charcoal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_Charcoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, motor gasoline, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_MotorGasoline_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, UN other hydrocarbons, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_OtherHydrocarbons_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer electricity power plants, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerElectricityPowerPlants_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: auto producer heat power plants, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AutoProducerHeatPowerPlants_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: bagasse, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Bagasse_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: bio jet kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BioJetKerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: biogas production, bio gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BiogasProduction_BioGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: EIA bituminous coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BituminousCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnace gas, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaceGas_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, charcoal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_Charcoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, coal tar, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_CoalTar_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: blast furnaces, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BlastFurnaces_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, EIA anthracite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_AnthraciteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, brown coal briquettes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_BrownCoalBriquettes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, fuelwood, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_Fuelwood_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, lignite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_LigniteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, UN other liquid biofuels, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_OtherLiquidBiofuels_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, patent fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_PatentFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, peat products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_PeatProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, peat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_Peat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYObY4AQAAAP//AQAA//9oiaJLUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
#> [18] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Annual consumption of fuel: briquetting plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, EIA subbituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_SubbituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: briquetting plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BriquettingPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: brown coal briquettes, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BrownCoalBriquettes_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: brown coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_BrownCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: charcoal plants, fuelwood, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: charcoal plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CharcoalPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: charcoal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Charcoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: chemical petrochemical industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ChemicalPetrochemicalIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal liquefaction plants, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalLiquefactionPlants_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal liquefaction plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalLiquefactionPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal liquefaction plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalLiquefactionPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal liquefaction plants, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalLiquefactionPlants_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal liquefaction plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalLiquefactionPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, EIA anthracite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_AnthraciteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, bio diesel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_BioDiesel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, bio gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_BioGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, EIA bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_BituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, brown coal briquettes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_BrownCoalBriquettes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, coal tar, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_CoalTar_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, coking coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_CokingCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, gasworks gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_GasworksGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, industrial waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_IndustrialWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, lignite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_LigniteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, lubricants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_Lubricants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, oil shale, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_OilShale_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, patent fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_PatentFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, peat products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_PeatProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, peat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_Peat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal mines, EIA subbituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalMines_SubbituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal products, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalProducts_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coal tar, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CoalTar_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke oven coke, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvenCoke_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke oven gas, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvenGas_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, EIA anthracite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_AnthraciteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, brown coal briquettes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_BrownCoalBriquettes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coal tar, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CoalTar_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coking coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CokingCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, industrial waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_IndustrialWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, lubricants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_Lubricants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, naphtha, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_Naphtha_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, UN other recovered gases, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_OtherRecoveredGases_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, refinery gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_RefineryGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coke ovens, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokeOvens_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: coking coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CokingCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: commerce and public services, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CommerceAndPublicServices_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: construction industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ConstructionIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: crude oil, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_CrudeOil_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: diesel oil, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DieselOil_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, bio jet kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_BioJetKerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, gasoline jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_GasolineJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic aviation transport, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticAviationTransport_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: domestic navigation transport, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_DomesticNavigationTransport_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, animal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_AnimalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA anthracite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_AnthraciteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, bio diesel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BioDiesel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, bio gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BioGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, charcoal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Charcoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coking coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CokingCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, crude oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CrudeOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, fuelwood, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Fuelwood_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, gasworks gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_GasworksGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, industrial waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_IndustrialWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, kerosene jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_KeroseneJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, kerosene jet fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_KeroseneJetFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, lignite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_LigniteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, lubricants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Lubricants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, motor gasoline, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_MotorGasoline_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, municipal waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_MunicipalWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other hydrocarbons, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherHydrocarbons_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other recovered gases, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherRecoveredGases_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, patent fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_PatentFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, peat products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_PeatProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, peat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Peat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, refinery gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_RefineryGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA subbituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_SubbituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, vegetal waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_VegetalWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: electricity generation, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ElectricityGeneration_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry own use, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustryOwnUse_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, EIA anthracite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_AnthraciteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, bagasse, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Bagasse_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, bio diesel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BioDiesel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, bio gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BioGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, bio gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BioGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, EIA bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, brown coal briquettes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BrownCoalBriquettes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, charcoal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Charcoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, coal tar, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_CoalTar_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, coking coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_CokingCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, crude oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_CrudeOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, ethane, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Ethane_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, fuelwood, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Fuelwood_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, gas coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_GasCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, gasoline jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_GasolineJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, gasworks gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_GasworksGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, industrial waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_IndustrialWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, kerosene jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_KeroseneJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, lignite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_LigniteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, lubricants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Lubricants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, municipal waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_MunicipalWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, naphtha, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Naphtha_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, natural gas liquids, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_NaturalGasLiquids_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, oil shale, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_OilShale_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, UN other liquid biofuels, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_OtherLiquidBiofuels_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, UN other recovered gases, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_OtherRecoveredGases_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, paraffin waxes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_ParaffinWaxes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, patent fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_PatentFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, peat products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_PeatProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, peat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_Peat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, refinery gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_RefineryGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, EIA subbituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_SubbituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, vegetal waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_VegetalWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: energy industry, white spirit, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_EnergyIndustry_WhiteSpirit_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: ethane, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Ethane_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fertilizer industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FertilizerIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fertilizer industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FertilizerIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: food and tobacco industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FoodAndTobaccoIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_Coal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, natural gas, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), natural gas, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_NaturalGas_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum coke, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumCoke_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum liquids, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, petroleum liquids, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, petroleum liquids, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, petroleum liquids, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, petroleum liquids, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum liquids, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, petroleum liquids, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum liquids, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum liquids, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum liquids, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption, petroleum liquids, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Total consumption (Btu), petroleum liquids, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGenerationAndThermalOutput_PetroleumLiquids_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, coal, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_Coal_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), natural gas, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, natural gas, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), natural gas, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, natural gas, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), natural gas, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, natural gas, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), natural gas, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, natural gas, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), natural gas, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOVa4AQAAAP//AQAA//8sELiqUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#> [19] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Consumption for electricity generation, natural gas, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, natural gas, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation, natural gas, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_NaturalGas_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum coke, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumCoke_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, electric utility non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_ElectricUtilityNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for electricity generation (Btu), petroleum liquids, industrial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForElectricityGeneration_PetroleumLiquids_IndustrialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, coal, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_Coal_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), natural gas, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, natural gas, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, natural gas, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), natural gas, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, natural gas, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), natural gas, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), natural gas, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), natural gas, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, natural gas, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, natural gas, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_NaturalGas_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum coke, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumCoke_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, all sectors, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, all commercial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_Commercial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, commercial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_CommercialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output, petroleum liquids, commercial non-cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_CommercialNonCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, electric power (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_ElectricPower\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, electric utility, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, electric utility cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_ElectricUtilityCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, independent power producers (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_IndependentPowerProducers\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, all industrial (total), annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_Industrial\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption for useful thermal output (Btu), petroleum liquids, industrial cogen, annual\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ForUsefulThermalOutput_PetroleumLiquids_IndustrialCogen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel oil, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelOil_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, additives oxygenates, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_AdditivesOxygenates_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, animal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_AnimalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, charcoal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Charcoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, ethane, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Ethane_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, gas coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_GasCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, kerosene jet fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_KeroseneJetFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, lubricants, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Lubricants_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, motor gasoline, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_MotorGasoline_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, UN other hydrocarbons, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_OtherHydrocarbons_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, paraffin waxes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_ParaffinWaxes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, refinery feedstocks, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_RefineryFeedstocks_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuel transformation industry, white spirit, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_FuelTransformationIndustry_WhiteSpirit_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: fuelwood, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Fuelwood_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas to liquid plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasToLiquidPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, coal tar, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_CoalTar_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, gas coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_GasCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, gas coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_GasCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, gasworks gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_GasworksGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, motor gasoline, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_MotorGasoline_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, naphtha, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_Naphtha_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gas works, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasWorks_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gasoline jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasolineJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: hard coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_HardCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: households, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Households_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: india EDM unspecified sector, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IndiaEDM_UnspecifiedSector_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: india EDM unspecified sector, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IndiaEDM_UnspecifiedSector_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, EIA anthracite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_AnthraciteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, bagasse, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_Bagasse_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, bio diesel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_BioDiesel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, bio gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_BioGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, EIA bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_BituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, blast furnace gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_BlastFurnaceGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, brown coal briquettes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_BrownCoalBriquettes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, charcoal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_Charcoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, crude oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_CrudeOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, fuelwood, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_Fuelwood_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, gasworks gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_GasworksGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, industrial waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_IndustrialWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, kerosene jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_KeroseneJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, lignite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_LigniteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, lubricants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_Lubricants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, municipal waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_MunicipalWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, natural gas liquids, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_NaturalGasLiquids_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, oil shale, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_OilShale_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, UN other recovered gases, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_OtherRecoveredGases_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, paraffin waxes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_ParaffinWaxes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, peat products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_PeatProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, peat, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_Peat_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, refinery gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_RefineryGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, vegetal waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_VegetalWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: industry, white spirit, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Industry_WhiteSpirit_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international aviation bunkers, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalAviationBunkers_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international aviation bunkers, bio jet kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalAviationBunkers_BioJetKerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international aviation bunkers, gasoline jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalAviationBunkers_GasolineJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international aviation bunkers, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalAviationBunkers_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international aviation bunkers, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalAviationBunkers_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international aviation bunkers, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalAviationBunkers_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: international marine bunkers, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_InternationalMarineBunkers_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: iron steel, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_IronSteel_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: EIA kerosene, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Kerosene_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: lignite coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_LigniteCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: liquefied natural gas plants, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_LiquifiedNaturalGasPlants_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: liquefied petroleum gas, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_LiquifiedPetroleumGas_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: lubricants, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Lubricants_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: machinery industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MachineryIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, kerosene jet fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_KeroseneJetFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, UN other hydrocarbons, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_OtherHydrocarbons_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer combined heat power plants, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerCombinedHeatPowerPlants_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, animal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_AnimalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, charcoal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_Charcoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, kerosene jet fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_KeroseneJetFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, motor gasoline, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_MotorGasoline_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, UN other hydrocarbons, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherHydrocarbons_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer electricity power plants, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerElectricityPowerPlants_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, coking coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_CokingCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, municipal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_MunicipalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, oil shale, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_OilShale_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, UN other liquid biofuels, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_OtherLiquidBiofuels_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, UN other recovered gases, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_OtherRecoveredGases_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, patent fuel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_PatentFuel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, EIA subbituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_SubbituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: main activity producer heat power plants, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MainActivityProducerHeatPowerPlants_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Ethane\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOeZ4AQAAAP//AQAA///wryQYUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
#> [20] "{\"data\":{\"StatisticalVariable\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"Annual consumption of fuel: manufacturing, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: manufacturing, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Manufacturing_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: mining and quarrying industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MiningAndQuarryingIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: motor gasoline, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MotorGasoline_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: naphtha, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_Naphtha_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas liquids, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasLiquids_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, gasworks gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_GasworksGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, natural gas liquids, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_NaturalGasLiquids_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas plants, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGasPlants_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: natural gas, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NaturalGas_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non energy industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonEnergyIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non ferrous metals industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonFerrousMetalsIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: non metallic minerals industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_NonMetallicMineralsIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, bio diesel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_BioDiesel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, bio gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_BioGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, crude oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_CrudeOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, ethane, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_Ethane_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, kerosene jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_KeroseneJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, naphtha, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_Naphtha_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, natural gas liquids, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_NaturalGasLiquids_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas extraction, refinery gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasExtraction_RefineryGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas imports, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasImports_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil gas sales, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilGasSales_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, additives oxygenates, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_AdditivesOxygenates_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, bio diesel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_BioDiesel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, EIA bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_BituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, brown coal briquettes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_BrownCoalBriquettes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, brown coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_BrownCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, coal tar, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_CoalTar_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, coke oven coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_CokeOvenCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, coke oven gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_CokeOvenGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, crude oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_CrudeOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, diesel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_DieselOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, ethane, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_Ethane_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, fuel oil, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_FuelOil_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, fuelwood, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_Fuelwood_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, gasoline jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_GasolineJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, gasworks gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_GasworksGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, hard coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_HardCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, industrial waste, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_IndustrialWaste_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, kerosene jet fuel, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_KeroseneJetFuel_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, EIA kerosene, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_Kerosene_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, lignite coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_LigniteCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, liquefied petroleum gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_LiquifiedPetroleumGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, lubricants, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_Lubricants_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, motor gasoline, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_MotorGasoline_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, naphtha, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_Naphtha_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, natural gas liquids, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_NaturalGasLiquids_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, natural gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_NaturalGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, UN other bituminous coal, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_OtherBituminousCoal_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, UN other hydrocarbons, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_OtherHydrocarbons_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, UN other liquid biofuels, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_OtherLiquidBiofuels_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, UN other oil products, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_OtherOilProducts_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, paraffin waxes, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_ParaffinWaxes_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, petroleum coke, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_PetroleumCoke_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, refinery feedstocks, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_RefineryFeedstocks_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, refinery gas, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_RefineryGas_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil refineries, white spirit, energy industry own use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilRefineries_WhiteSpirit_EnergyIndustryOwnUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: oil shale, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OilShale_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other bituminous coal, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherBituminousCoal_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, animal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_AnimalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA anthracite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_AnthraciteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bagasse, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Bagasse_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bio diesel, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BioDiesel_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bio gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BioGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, black liquor, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BlackLiquor_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, blast furnace gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BlastFurnaceGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, brown coal briquettes, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BrownCoalBriquettes_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, brown coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_BrownCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coal tar, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CoalTar_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coke oven coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CokeOvenCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coke oven gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CokeOvenGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, crude oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_CrudeOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, diesel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_DieselOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, fuel oil, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_FuelOil_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, fuelwood, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Fuelwood_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, hard coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_HardCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, industrial waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_IndustrialWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA kerosene, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Kerosene_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, lignite coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_LigniteCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, liquefied petroleum gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_LiquifiedPetroleumGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, lubricants, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Lubricants_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, motor gasoline, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_MotorGasoline_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, naphtha, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Naphtha_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, natural gas liquids, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_NaturalGasLiquids_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, natural gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_NaturalGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, UN other bituminous coal, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OtherBituminousCoal_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, UN other oil products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OtherOilProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, peat products, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_PeatProducts_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, peat, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_Peat_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, petroleum coke, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_PetroleumCoke_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, refinery feedstocks, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_RefineryFeedstocks_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, refinery gas, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_RefineryGas_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, vegetal waste, fuel transformation\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_VegetalWaste_FuelTransformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, coal tar\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_CoalTar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, ethane\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Ethane\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, oil shale\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_OilShale\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other manufacturing industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherManufacturingIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other oil products, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherOilProducts_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other recovered gases\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherRecoveredGases\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other recovered gases, non energy use\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherRecoveredGases_NonEnergyUse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, animal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_AnimalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, coal products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_CoalProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, gas coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_GasCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other sector, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherSector_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, aviation gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_AviationGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, bio gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_BioGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, bio jet kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_BioJetKerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, gasoline jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_GasolineJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: UN other transport, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_OtherTransport_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, EIA anthracite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_AnthraciteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, bagasse\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Bagasse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, bio diesel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BioDiesel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, bio gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BioGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, EIA bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, black liquor\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BlackLiquor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, blast furnace gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BlastFurnaceGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, brown coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BrownCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, brown coal briquettes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_BrownCoalBriquettes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, charcoal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Charcoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, coke oven coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_CokeOvenCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, coke oven gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_CokeOvenGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, coking coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_CokingCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, crude oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_CrudeOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, diesel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_DieselOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, fuel oil\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_FuelOil\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, fuelwood\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Fuelwood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, gasworks gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_GasworksGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, hard coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_HardCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, industrial waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_IndustrialWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, EIA kerosene\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Kerosene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, kerosene jet fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_KeroseneJetFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, lignite coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_LigniteCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, liquefied petroleum gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_LiquifiedPetroleumGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, lubricants\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Lubricants\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, motor gasoline\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_MotorGasoline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, municipal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_MunicipalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, naphtha\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Naphtha\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, natural gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, natural gas liquids\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_NaturalGasLiquids\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, UN other bituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_OtherBituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, UN other liquid biofuels\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_OtherLiquidBiofuels\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, UN other oil products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_OtherOilProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, patent fuel\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_PatentFuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, peat\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_Peat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, peat products\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_PeatProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, petroleum coke\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_PetroleumCoke\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, refinery gas\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_RefineryGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, EIA subbituminous coal\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_SubbituminousCoal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, vegetal waste\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_VegetalWaste\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paper pulp print industry, white spirit\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_PaperPulpPrintIndustry_WhiteSpirit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Annual consumption of fuel: paraffin waxes\",\"types\":[\"StatisticalVariable\"],\"dcid\":\"Annual_Consumption_Fuel_ParaffinWaxes\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOSb4AQAAAP//AQAA///lJPyzUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

# Get a list of all existing entity types
dc_get_node(nodes = "Class", expression = "<-typeOf")
#> [1] "{\"data\":{\"Class\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"ABSGreaterCapitalCityStatisticalArea\",\"types\":[\"Class\"],\"dcid\":\"ABSGreaterCapitalCityStatisticalArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ABSState\",\"types\":[\"Class\"],\"dcid\":\"ABSState\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ABSStatisticalAreaLevel1\",\"types\":[\"Class\"],\"dcid\":\"ABSStatisticalAreaLevel1\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ABSStatisticalAreaLevel2\",\"types\":[\"Class\"],\"dcid\":\"ABSStatisticalAreaLevel2\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ABSStatisticalAreaLevel3\",\"types\":[\"Class\"],\"dcid\":\"ABSStatisticalAreaLevel3\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ABSStatisticalAreaLevel4\",\"types\":[\"Class\"],\"dcid\":\"ABSStatisticalAreaLevel4\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ACLGroup\",\"types\":[\"Class\"],\"dcid\":\"ACLGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ACSEDChild\",\"types\":[\"Class\"],\"dcid\":\"ACSEDChild\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ACSEDParent\",\"types\":[\"Class\"],\"dcid\":\"ACSEDParent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"APIReference\",\"types\":[\"Class\"],\"dcid\":\"APIReference\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Abortion\",\"types\":[\"Class\"],\"dcid\":\"Abortion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AboutPage\",\"types\":[\"Class\"],\"dcid\":\"AboutPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AbsenteeismStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"AbsenteeismStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AcademicAssessmentEvent\",\"types\":[\"Class\"],\"dcid\":\"AcademicAssessmentEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AcademicAssessmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AcademicAssessmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AcceptAction\",\"types\":[\"Class\"],\"dcid\":\"AcceptAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AccidentCauseEnum\",\"types\":[\"Class\"],\"dcid\":\"AccidentCauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AccidentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AccidentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Accommodation\",\"types\":[\"Class\"],\"dcid\":\"Accommodation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AccountingService\",\"types\":[\"Class\"],\"dcid\":\"AccountingService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AchieveAction\",\"types\":[\"Class\"],\"dcid\":\"AchieveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Action\",\"types\":[\"Class\"],\"dcid\":\"Action\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ActionStatusType\",\"types\":[\"Class\"],\"dcid\":\"ActionStatusType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ActivateAction\",\"types\":[\"Class\"],\"dcid\":\"ActivateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ActiveIngredientAmount\",\"types\":[\"Class\"],\"dcid\":\"ActiveIngredientAmount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AddAction\",\"types\":[\"Class\"],\"dcid\":\"AddAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdjustmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AdjustmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrationRouteEnum\",\"types\":[\"Class\"],\"dcid\":\"AdministrationRouteEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrativeArea\",\"types\":[\"Class\"],\"dcid\":\"AdministrativeArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrativeArea1\",\"types\":[\"Class\"],\"dcid\":\"AdministrativeArea1\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrativeArea2\",\"types\":[\"Class\"],\"dcid\":\"AdministrativeArea2\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrativeArea3\",\"types\":[\"Class\"],\"dcid\":\"AdministrativeArea3\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrativeArea4\",\"types\":[\"Class\"],\"dcid\":\"AdministrativeArea4\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdministrativeArea5\",\"types\":[\"Class\"],\"dcid\":\"AdministrativeArea5\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdultEntertainment\",\"types\":[\"Class\"],\"dcid\":\"AdultEntertainment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AdultSkillsDeprivation\",\"types\":[\"Class\"],\"dcid\":\"AdultSkillsDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AffectedByEnum\",\"types\":[\"Class\"],\"dcid\":\"AffectedByEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AgeGroupClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"AgeGroupClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AgeStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"AgeStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AggregateOffer\",\"types\":[\"Class\"],\"dcid\":\"AggregateOffer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AggregateRating\",\"types\":[\"Class\"],\"dcid\":\"AggregateRating\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AggregateTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AggregateTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AggregationSlice\",\"types\":[\"Class\"],\"dcid\":\"AggregationSlice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AgreeAction\",\"types\":[\"Class\"],\"dcid\":\"AgreeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AgriculturalFacility\",\"types\":[\"Class\"],\"dcid\":\"AgriculturalFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AgricultureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AgricultureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AirPollutantEnum\",\"types\":[\"Class\"],\"dcid\":\"AirPollutantEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AirQualitySite\",\"types\":[\"Class\"],\"dcid\":\"AirQualitySite\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Airline\",\"types\":[\"Class\"],\"dcid\":\"Airline\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Airport\",\"types\":[\"Class\"],\"dcid\":\"Airport\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AlcoholConsumptionRecordTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AlcoholConsumptionRecordTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AlcoholUsageEnum\",\"types\":[\"Class\"],\"dcid\":\"AlcoholUsageEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AlcoholicBeverageTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AlcoholicBeverageTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AlignmentObject\",\"types\":[\"Class\"],\"dcid\":\"AlignmentObject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AllegationEnum\",\"types\":[\"Class\"],\"dcid\":\"AllegationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Allele\",\"types\":[\"Class\"],\"dcid\":\"Allele\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AlleleTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AlleleTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AllocateAction\",\"types\":[\"Class\"],\"dcid\":\"AllocateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AmenityFeatureEnum\",\"types\":[\"Class\"],\"dcid\":\"AmenityFeatureEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Amount\",\"types\":[\"Class\"],\"dcid\":\"Amount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AmrGlassCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"AmrGlassCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AmusementPark\",\"types\":[\"Class\"],\"dcid\":\"AmusementPark\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AnatomicalTherapeuticChemicalCode\",\"types\":[\"Class\"],\"dcid\":\"AnatomicalTherapeuticChemicalCode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AnimalShelter\",\"types\":[\"Class\"],\"dcid\":\"AnimalShelter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Answer\",\"types\":[\"Class\"],\"dcid\":\"Answer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AntenatalStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"AntenatalStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Antibody\",\"types\":[\"Class\"],\"dcid\":\"Antibody\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AntibodyTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AntibodyTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Apartment\",\"types\":[\"Class\"],\"dcid\":\"Apartment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ApartmentComplex\",\"types\":[\"Class\"],\"dcid\":\"ApartmentComplex\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AppendAction\",\"types\":[\"Class\"],\"dcid\":\"AppendAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ApplicationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ApplicationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ApplyAction\",\"types\":[\"Class\"],\"dcid\":\"ApplyAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Aquarium\",\"types\":[\"Class\"],\"dcid\":\"Aquarium\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AreaUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"AreaUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ArriveAction\",\"types\":[\"Class\"],\"dcid\":\"ArriveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ArtGallery\",\"types\":[\"Class\"],\"dcid\":\"ArtGallery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Article\",\"types\":[\"Class\"],\"dcid\":\"Article\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AshImpoundmentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"AshImpoundmentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AskAction\",\"types\":[\"Class\"],\"dcid\":\"AskAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssessAction\",\"types\":[\"Class\"],\"dcid\":\"AssessAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssessmentLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"AssessmentLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssessmentScoreLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"AssessmentScoreLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssessmentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"AssessmentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssetsOwnedEnum\",\"types\":[\"Class\"],\"dcid\":\"AssetsOwnedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssignAction\",\"types\":[\"Class\"],\"dcid\":\"AssignAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssistiveTechnologyProductEnum\",\"types\":[\"Class\"],\"dcid\":\"AssistiveTechnologyProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssistiveTechnologySubquestionEnum\",\"types\":[\"Class\"],\"dcid\":\"AssistiveTechnologySubquestionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Association\",\"types\":[\"Class\",\"InteractionDetectionMethodEnum\"],\"dcid\":\"Association\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssociationSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"AssociationSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AssociationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AssociationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AstronomicalLowTideEvent\",\"types\":[\"Class\"],\"dcid\":\"AstronomicalLowTideEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Atmosphere\",\"types\":[\"Class\"],\"dcid\":\"Atmosphere\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Attorney\",\"types\":[\"Class\"],\"dcid\":\"Attorney\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Audience\",\"types\":[\"Class\"],\"dcid\":\"Audience\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AudioObject\",\"types\":[\"Class\"],\"dcid\":\"AudioObject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AuthorizeAction\",\"types\":[\"Class\"],\"dcid\":\"AuthorizeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutoBodyShop\",\"types\":[\"Class\"],\"dcid\":\"AutoBodyShop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutoDealer\",\"types\":[\"Class\"],\"dcid\":\"AutoDealer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutoPartsStore\",\"types\":[\"Class\"],\"dcid\":\"AutoPartsStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutoRental\",\"types\":[\"Class\"],\"dcid\":\"AutoRental\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutoRepair\",\"types\":[\"Class\"],\"dcid\":\"AutoRepair\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutoWash\",\"types\":[\"Class\"],\"dcid\":\"AutoWash\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutomatedTeller\",\"types\":[\"Class\"],\"dcid\":\"AutomatedTeller\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutomaticRefreshTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"AutomaticRefreshTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutomotiveBusiness\",\"types\":[\"Class\"],\"dcid\":\"AutomotiveBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AutonomousRegion\",\"types\":[\"Class\"],\"dcid\":\"AutonomousRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AvailabilityToObtainEnum\",\"types\":[\"Class\"],\"dcid\":\"AvailabilityToObtainEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AvalancheEvent\",\"types\":[\"Class\"],\"dcid\":\"AvalancheEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"AwareAntibioticsGroupEnum\",\"types\":[\"Class\"],\"dcid\":\"AwareAntibioticsGroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BLSEstablishment\",\"types\":[\"Class\"],\"dcid\":\"BLSEstablishment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BLSWorker\",\"types\":[\"Class\"],\"dcid\":\"BLSWorker\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Bakery\",\"types\":[\"Class\"],\"dcid\":\"Bakery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Bank\",\"types\":[\"Class\"],\"dcid\":\"Bank\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BankAccount\",\"types\":[\"Class\"],\"dcid\":\"BankAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BankAccountTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"BankAccountTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BankOrCreditUnion\",\"types\":[\"Class\"],\"dcid\":\"BankOrCreditUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BarOrPub\",\"types\":[\"Class\"],\"dcid\":\"BarOrPub\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Barcode\",\"types\":[\"Class\"],\"dcid\":\"Barcode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BarriersToAccessingAssistiveProductEnum\",\"types\":[\"Class\"],\"dcid\":\"BarriersToAccessingAssistiveProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BarriersToHousingAndServices\",\"types\":[\"Class\"],\"dcid\":\"BarriersToHousingAndServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Beach\",\"types\":[\"Class\"],\"dcid\":\"Beach\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BeautySalon\",\"types\":[\"Class\"],\"dcid\":\"BeautySalon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Bed\",\"types\":[\"Class\"],\"dcid\":\"Bed\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BedAndBreakfast\",\"types\":[\"Class\"],\"dcid\":\"BedAndBreakfast\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BedDetails\",\"types\":[\"Class\"],\"dcid\":\"BedDetails\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BedLine\",\"types\":[\"Class\"],\"dcid\":\"BedLine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BefriendAction\",\"types\":[\"Class\"],\"dcid\":\"BefriendAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BenefitProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"BenefitProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BenefitTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"BenefitTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BenefitsStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"BenefitsStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiasMotivationEnum\",\"types\":[\"Class\"],\"dcid\":\"BiasMotivationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BikeStore\",\"types\":[\"Class\"],\"dcid\":\"BikeStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BinaryOperatorEnum\",\"types\":[\"Class\"],\"dcid\":\"BinaryOperatorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BioChemEntity\",\"types\":[\"Class\"],\"dcid\":\"BioChemEntity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalClass\",\"types\":[\"Class\"],\"dcid\":\"BiologicalClass\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalEntity\",\"types\":[\"Class\"],\"dcid\":\"BiologicalEntity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalFamily\",\"types\":[\"Class\"],\"dcid\":\"BiologicalFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalGenus\",\"types\":[\"Class\"],\"dcid\":\"BiologicalGenus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalHostEnum\",\"types\":[\"Class\"],\"dcid\":\"BiologicalHostEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalInfraSpecies\",\"types\":[\"Class\"],\"dcid\":\"BiologicalInfraSpecies\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalKingdom\",\"types\":[\"Class\"],\"dcid\":\"BiologicalKingdom\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalOrder\",\"types\":[\"Class\"],\"dcid\":\"BiologicalOrder\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalPhylum\",\"types\":[\"Class\"],\"dcid\":\"BiologicalPhylum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalSpecies\",\"types\":[\"Class\"],\"dcid\":\"BiologicalSpecies\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalSpecimen\",\"types\":[\"Class\"],\"dcid\":\"BiologicalSpecimen\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalSubGenus\",\"types\":[\"Class\"],\"dcid\":\"BiologicalSubGenus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalSuperFamily\",\"types\":[\"Class\"],\"dcid\":\"BiologicalSuperFamily\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalTaxonomicDivisionEnum\",\"types\":[\"Class\"],\"dcid\":\"BiologicalTaxonomicDivisionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalTaxonomicRankEnum\",\"types\":[\"Class\"],\"dcid\":\"BiologicalTaxonomicRankEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiologicalTaxonomyGroupEnum\",\"types\":[\"Class\"],\"dcid\":\"BiologicalTaxonomyGroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BiomedicalEntity\",\"types\":[\"Class\"],\"dcid\":\"BiomedicalEntity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BirthCenterEnum\",\"types\":[\"Class\"],\"dcid\":\"BirthCenterEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BirthControlMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"BirthControlMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BirthEvent\",\"types\":[\"Class\"],\"dcid\":\"BirthEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BirthEventStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"BirthEventStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BlizzardEvent\",\"types\":[\"Class\"],\"dcid\":\"BlizzardEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Blog\",\"types\":[\"Class\"],\"dcid\":\"Blog\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BlogPosting\",\"types\":[\"Class\"],\"dcid\":\"BlogPosting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BoardingPolicyType\",\"types\":[\"Class\"],\"dcid\":\"BoardingPolicyType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BodyMassIndexClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"BodyMassIndexClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BodyOfWater\",\"types\":[\"Class\"],\"dcid\":\"BodyOfWater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Bond\",\"types\":[\"Class\"],\"dcid\":\"Bond\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BondYieldMeasurementEnum\",\"types\":[\"Class\"],\"dcid\":\"BondYieldMeasurementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Book\",\"types\":[\"Class\"],\"dcid\":\"Book\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BookFormatType\",\"types\":[\"Class\"],\"dcid\":\"BookFormatType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BookSeries\",\"types\":[\"Class\"],\"dcid\":\"BookSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BookStore\",\"types\":[\"Class\"],\"dcid\":\"BookStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BookmarkAction\",\"types\":[\"Class\"],\"dcid\":\"BookmarkAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Borough\",\"types\":[\"Class\"],\"dcid\":\"Borough\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BorrowAction\",\"types\":[\"Class\"],\"dcid\":\"BorrowAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BowlingAlley\",\"types\":[\"Class\"],\"dcid\":\"BowlingAlley\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Brand\",\"types\":[\"Class\"],\"dcid\":\"Brand\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BrazilAidDistributionPartnerEnum\",\"types\":[\"Class\"],\"dcid\":\"BrazilAidDistributionPartnerEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BreadcrumbList\",\"types\":[\"Class\"],\"dcid\":\"BreadcrumbList\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BreastFeedingPracticeEnum\",\"types\":[\"Class\"],\"dcid\":\"BreastFeedingPracticeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Brewery\",\"types\":[\"Class\"],\"dcid\":\"Brewery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Bridge\",\"types\":[\"Class\"],\"dcid\":\"Bridge\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BroadcastChannel\",\"types\":[\"Class\"],\"dcid\":\"BroadcastChannel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BroadcastEvent\",\"types\":[\"Class\"],\"dcid\":\"BroadcastEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BroadcastService\",\"types\":[\"Class\"],\"dcid\":\"BroadcastService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BuddhistTemple\",\"types\":[\"Class\"],\"dcid\":\"BuddhistTemple\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusReservation\",\"types\":[\"Class\"],\"dcid\":\"BusReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusStation\",\"types\":[\"Class\"],\"dcid\":\"BusStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusStop\",\"types\":[\"Class\"],\"dcid\":\"BusStop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusTrip\",\"types\":[\"Class\"],\"dcid\":\"BusTrip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusinessAudience\",\"types\":[\"Class\"],\"dcid\":\"BusinessAudience\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusinessEntityType\",\"types\":[\"Class\"],\"dcid\":\"BusinessEntityType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusinessEvent\",\"types\":[\"Class\"],\"dcid\":\"BusinessEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusinessFunction\",\"types\":[\"Class\"],\"dcid\":\"BusinessFunction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BusinessOperationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"BusinessOperationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"BuyAction\",\"types\":[\"Class\"],\"dcid\":\"BuyAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"COVID19TestingMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"COVID19TestingMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CPICLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"CPICLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CableOrSatelliteService\",\"types\":[\"Class\"],\"dcid\":\"CableOrSatelliteService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CafeOrCoffeeShop\",\"types\":[\"Class\"],\"dcid\":\"CafeOrCoffeeShop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Campaign\",\"types\":[\"Class\"],\"dcid\":\"Campaign\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Campground\",\"types\":[\"Class\"],\"dcid\":\"Campground\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CampingPitch\",\"types\":[\"Class\"],\"dcid\":\"CampingPitch\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Canal\",\"types\":[\"Class\"],\"dcid\":\"Canal\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CancelAction\",\"types\":[\"Class\"],\"dcid\":\"CancelAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CandidateICOStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"CandidateICOStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CandidatesStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"CandidatesStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Canton\",\"types\":[\"Class\"],\"dcid\":\"Canton\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Car\",\"types\":[\"Class\"],\"dcid\":\"Car\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CareSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"CareSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CarnegieInstitutionSizeEnum\",\"types\":[\"Class\"],\"dcid\":\"CarnegieInstitutionSizeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CarnegieInstitutionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CarnegieInstitutionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CarnegieResidenceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CarnegieResidenceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CashRentEnum\",\"types\":[\"Class\"],\"dcid\":\"CashRentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Casino\",\"types\":[\"Class\"],\"dcid\":\"Casino\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CatholicChurch\",\"types\":[\"Class\"],\"dcid\":\"CatholicChurch\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CauseOfDeathAndDisabilityEnum\",\"types\":[\"Class\"],\"dcid\":\"CauseOfDeathAndDisabilityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CauseOfDeathEnum\",\"types\":[\"Class\"],\"dcid\":\"CauseOfDeathEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CchSurveySub-QuestionEnum\",\"types\":[\"Class\"],\"dcid\":\"CchSurveySub-QuestionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Celsius\",\"types\":[\"Class\"],\"dcid\":\"Celsius\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Cemetery\",\"types\":[\"Class\"],\"dcid\":\"Cemetery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusBlock\",\"types\":[\"Class\"],\"dcid\":\"CensusBlock\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusBlockGroup\",\"types\":[\"Class\"],\"dcid\":\"CensusBlockGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusCoreBasedStatisticalArea\",\"types\":[\"Class\"],\"dcid\":\"CensusCoreBasedStatisticalArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusCountyDivision\",\"types\":[\"Class\"],\"dcid\":\"CensusCountyDivision\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusDivision\",\"types\":[\"Class\"],\"dcid\":\"CensusDivision\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusOutputArea\",\"types\":[\"Class\"],\"dcid\":\"CensusOutputArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusRegion\",\"types\":[\"Class\"],\"dcid\":\"CensusRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusSurveyEnum\",\"types\":[\"Class\"],\"dcid\":\"CensusSurveyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusTract\",\"types\":[\"Class\"],\"dcid\":\"CensusTract\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CensusZipCodeTabulationArea\",\"types\":[\"Class\"],\"dcid\":\"CensusZipCodeTabulationArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CertificationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"CertificationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CharterSchoolEnum\",\"types\":[\"Class\"],\"dcid\":\"CharterSchoolEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CheckAction\",\"types\":[\"Class\"],\"dcid\":\"CheckAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CheckInAction\",\"types\":[\"Class\"],\"dcid\":\"CheckInAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CheckOutAction\",\"types\":[\"Class\"],\"dcid\":\"CheckOutAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CheckoutPage\",\"types\":[\"Class\"],\"dcid\":\"CheckoutPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompound\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompound\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundAssociation\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundChemicalCompoundAssociation\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundChemicalCompoundAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundDiseaseContraindication\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundDiseaseContraindication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundDiseaseTreatment\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundDiseaseTreatment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundGeneAssociation\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundGeneAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundGeneticVariantAssociation\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundGeneticVariantAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundProteinInteraction\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundProteinInteraction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalCompoundProteinInteractionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ChemicalCompoundProteinInteractionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalElement\",\"types\":[\"Class\"],\"dcid\":\"ChemicalElement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalSubstance\",\"types\":[\"Class\"],\"dcid\":\"ChemicalSubstance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChemicalSubstanceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ChemicalSubstanceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Child\",\"types\":[\"Class\"],\"dcid\":\"Child\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChildBirthMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"ChildBirthMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChildCare\",\"types\":[\"Class\"],\"dcid\":\"ChildCare\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChildrenAndYoungPeopleEducationDeprivation\",\"types\":[\"Class\"],\"dcid\":\"ChildrenAndYoungPeopleEducationDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChildrensEvent\",\"types\":[\"Class\"],\"dcid\":\"ChildrensEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ChooseAction\",\"types\":[\"Class\"],\"dcid\":\"ChooseAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Chromosome\",\"types\":[\"Class\"],\"dcid\":\"Chromosome\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Church\",\"types\":[\"Class\"],\"dcid\":\"Church\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CitizenshipEnum\",\"types\":[\"Class\"],\"dcid\":\"CitizenshipEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"City\",\"types\":[\"Class\",\"LocationClassificationEnum\"],\"dcid\":\"City\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CityHall\",\"types\":[\"Class\"],\"dcid\":\"CityHall\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CivicStructure\",\"types\":[\"Class\"],\"dcid\":\"CivicStructure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClaimReview\",\"types\":[\"Class\"],\"dcid\":\"ClaimReview\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Class\",\"types\":[\"Class\"],\"dcid\":\"Class\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClassRoom\",\"types\":[\"Class\"],\"dcid\":\"ClassRoom\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClimateModelEnum\",\"types\":[\"Class\"],\"dcid\":\"ClimateModelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClimateModelExperimentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ClimateModelExperimentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClimaticSeasonEnum\",\"types\":[\"Class\"],\"dcid\":\"ClimaticSeasonEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClinSigEnum\",\"types\":[\"Class\"],\"dcid\":\"ClinSigEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClinVarReviewStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"ClinVarReviewStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Clip\",\"types\":[\"Class\"],\"dcid\":\"Clip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ClothingStore\",\"types\":[\"Class\"],\"dcid\":\"ClothingStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Cloud\",\"types\":[\"Class\"],\"dcid\":\"Cloud\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CoalConsumingSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"CoalConsumingSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CoastalFloodEvent\",\"types\":[\"Class\"],\"dcid\":\"CoastalFloodEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Code\",\"types\":[\"Class\"],\"dcid\":\"Code\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CoeducationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"CoeducationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Cohort\",\"types\":[\"Class\"],\"dcid\":\"Cohort\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CohortSet\",\"types\":[\"Class\"],\"dcid\":\"CohortSet\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ColdTemperatureEvent\",\"types\":[\"Class\"],\"dcid\":\"ColdTemperatureEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ColdWaveEvent\",\"types\":[\"Class\"],\"dcid\":\"ColdWaveEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ColdWindChillEvent\",\"types\":[\"Class\"],\"dcid\":\"ColdWindChillEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CollectionPage\",\"types\":[\"Class\"],\"dcid\":\"CollectionPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CollegeOrUniversity\",\"types\":[\"Class\"],\"dcid\":\"CollegeOrUniversity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CollegeOrUniversityLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"CollegeOrUniversityLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CombustionPowerPlantPropertiesEnum\",\"types\":[\"Class\"],\"dcid\":\"CombustionPowerPlantPropertiesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComedyClub\",\"types\":[\"Class\"],\"dcid\":\"ComedyClub\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComedyEvent\",\"types\":[\"Class\"],\"dcid\":\"ComedyEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Comment\",\"types\":[\"Class\"],\"dcid\":\"Comment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommentAction\",\"types\":[\"Class\"],\"dcid\":\"CommentAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommercialBuilding\",\"types\":[\"Class\"],\"dcid\":\"CommercialBuilding\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Commodity\",\"types\":[\"Class\"],\"dcid\":\"Commodity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommodityGoodsCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"CommodityGoodsCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommodityTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CommodityTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Commune\",\"types\":[\"Class\",\"PlaceTypeEnum\"],\"dcid\":\"Commune\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommunicateAction\",\"types\":[\"Class\"],\"dcid\":\"CommunicateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommunicationAmentiesEnum\",\"types\":[\"Class\"],\"dcid\":\"CommunicationAmentiesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommunityRiskFactorEvent\",\"types\":[\"Class\"],\"dcid\":\"CommunityRiskFactorEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommuteTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CommuteTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CommutingZone\",\"types\":[\"Class\"],\"dcid\":\"CommutingZone\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Company\",\"types\":[\"Class\"],\"dcid\":\"Company\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComparativeObservation\",\"types\":[\"Class\"],\"dcid\":\"ComparativeObservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComparisonPeriodEnum\",\"types\":[\"Class\"],\"dcid\":\"ComparisonPeriodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CompositeConsumerPriceIndexEnum\",\"types\":[\"Class\"],\"dcid\":\"CompositeConsumerPriceIndexEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CompoundPriceSpecification\",\"types\":[\"Class\"],\"dcid\":\"CompoundPriceSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComputerLanguage\",\"types\":[\"Class\"],\"dcid\":\"ComputerLanguage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComputerStore\",\"types\":[\"Class\"],\"dcid\":\"ComputerStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ComputerUsageLocationEnum\",\"types\":[\"Class\"],\"dcid\":\"ComputerUsageLocationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConcentrationUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"ConcentrationUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConfidenceScoreTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ConfidenceScoreTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConfirmAction\",\"types\":[\"Class\"],\"dcid\":\"ConfirmAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CongressionalDistrict\",\"types\":[\"Class\"],\"dcid\":\"CongressionalDistrict\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Constituency\",\"types\":[\"Class\"],\"dcid\":\"Constituency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConstructedEnum\",\"types\":[\"Class\"],\"dcid\":\"ConstructedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConsumeAction\",\"types\":[\"Class\"],\"dcid\":\"ConsumeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumer\",\"types\":[\"Class\"],\"dcid\":\"Consumer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConsumerGoodsCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"ConsumerGoodsCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConsumerPriceIndex\",\"types\":[\"Class\"],\"dcid\":\"ConsumerPriceIndex\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Consumption\",\"types\":[\"Class\"],\"dcid\":\"Consumption\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConsumptionPeriodEnum\",\"types\":[\"Class\"],\"dcid\":\"ConsumptionPeriodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ContactPage\",\"types\":[\"Class\"],\"dcid\":\"ContactPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ContactPoint\",\"types\":[\"Class\"],\"dcid\":\"ContactPoint\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ContactPointOption\",\"types\":[\"Class\"],\"dcid\":\"ContactPointOption\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ContaminantStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"ContaminantStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ContaminatedThingEnum\",\"types\":[\"Class\"],\"dcid\":\"ContaminatedThingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Continent\",\"types\":[\"Class\"],\"dcid\":\"Continent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ContinentalUnion\",\"types\":[\"Class\"],\"dcid\":\"ContinentalUnion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ControlAction\",\"types\":[\"Class\"],\"dcid\":\"ControlAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ConvenienceStore\",\"types\":[\"Class\"],\"dcid\":\"ConvenienceStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Conversation\",\"types\":[\"Class\"],\"dcid\":\"Conversation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CookAction\",\"types\":[\"Class\"],\"dcid\":\"CookAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CookingFuelEnum\",\"types\":[\"Class\"],\"dcid\":\"CookingFuelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CookingMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"CookingMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Corporation\",\"types\":[\"Class\"],\"dcid\":\"Corporation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CorrectionalFacilityLocationEnum\",\"types\":[\"Class\"],\"dcid\":\"CorrectionalFacilityLocationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CorrectionalFacilityOperatorEnum\",\"types\":[\"Class\"],\"dcid\":\"CorrectionalFacilityOperatorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Country\",\"types\":[\"Class\"],\"dcid\":\"Country\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"County\",\"types\":[\"Class\"],\"dcid\":\"County\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CountyClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"CountyClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Course\",\"types\":[\"Class\"],\"dcid\":\"Course\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CourseInstance\",\"types\":[\"Class\"],\"dcid\":\"CourseInstance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CourseSpecializationEnum\",\"types\":[\"Class\"],\"dcid\":\"CourseSpecializationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Courthouse\",\"types\":[\"Class\"],\"dcid\":\"Courthouse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CrashInvolvementEnum\",\"types\":[\"Class\"],\"dcid\":\"CrashInvolvementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CrashOnNationalHighwaySystemEnum\",\"types\":[\"Class\"],\"dcid\":\"CrashOnNationalHighwaySystemEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CrashTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CrashTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CreateAction\",\"types\":[\"Class\"],\"dcid\":\"CreateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CreativeWork\",\"types\":[\"Class\"],\"dcid\":\"CreativeWork\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CreativeWorkSeason\",\"types\":[\"Class\"],\"dcid\":\"CreativeWorkSeason\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CreativeWorkSeries\",\"types\":[\"Class\"],\"dcid\":\"CreativeWorkSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CreditCard\",\"types\":[\"Class\"],\"dcid\":\"CreditCard\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Crematorium\",\"types\":[\"Class\"],\"dcid\":\"Crematorium\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CrimeDeprivation\",\"types\":[\"Class\"],\"dcid\":\"CrimeDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CrimeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CrimeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CriminalActivities\",\"types\":[\"Class\"],\"dcid\":\"CriminalActivities\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CriminalIncidents\",\"types\":[\"Class\"],\"dcid\":\"CriminalIncidents\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Curator\",\"types\":[\"Class\"],\"dcid\":\"Curator\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Currency\",\"types\":[\"Class\"],\"dcid\":\"Currency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CurrencyConversionService\",\"types\":[\"Class\"],\"dcid\":\"CurrencyConversionService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CurrencyUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"CurrencyUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CurrencyUnitStandardizationEnum\",\"types\":[\"Class\"],\"dcid\":\"CurrencyUnitStandardizationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CurrentBasicPrices1960To2017\",\"types\":[\"Class\"],\"dcid\":\"CurrentBasicPrices1960To2017\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CycloneEvent\",\"types\":[\"Class\"],\"dcid\":\"CycloneEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"CycloneTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"CycloneTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DNASequenceRoleEnum\",\"types\":[\"Class\"],\"dcid\":\"DNASequenceRoleEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DanceEvent\",\"types\":[\"Class\"],\"dcid\":\"DanceEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DanceGroup\",\"types\":[\"Class\"],\"dcid\":\"DanceGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DataCatalog\",\"types\":[\"Class\"],\"dcid\":\"DataCatalog\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DataDownload\",\"types\":[\"Class\"],\"dcid\":\"DataDownload\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DataFeed\",\"types\":[\"Class\"],\"dcid\":\"DataFeed\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DataFeedItem\",\"types\":[\"Class\"],\"dcid\":\"DataFeedItem\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DataType\",\"types\":[\"Class\"],\"dcid\":\"DataType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Dataset\",\"types\":[\"Class\"],\"dcid\":\"Dataset\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DatedMoneySpecification\",\"types\":[\"Class\"],\"dcid\":\"DatedMoneySpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DayOfWeek\",\"types\":[\"Class\"],\"dcid\":\"DayOfWeek\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DaySpa\",\"types\":[\"Class\"],\"dcid\":\"DaySpa\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeactivateAction\",\"types\":[\"Class\"],\"dcid\":\"DeactivateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DebrisFlowEvent\",\"types\":[\"Class\"],\"dcid\":\"DebrisFlowEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Debt\",\"types\":[\"Class\"],\"dcid\":\"Debt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DebtCreditorTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"DebtCreditorTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DebtFinancerEnum\",\"types\":[\"Class\"],\"dcid\":\"DebtFinancerEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DebtGuaranteeStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"DebtGuaranteeStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DebtInstrumentEnum\",\"types\":[\"Class\"],\"dcid\":\"DebtInstrumentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DebtTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"DebtTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DecileEnum\",\"types\":[\"Class\"],\"dcid\":\"DecileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DefenceEstablishment\",\"types\":[\"Class\"],\"dcid\":\"DefenceEstablishment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeleteAction\",\"types\":[\"Class\"],\"dcid\":\"DeleteAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeliveryChargeSpecification\",\"types\":[\"Class\"],\"dcid\":\"DeliveryChargeSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeliveryEvent\",\"types\":[\"Class\"],\"dcid\":\"DeliveryEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeliveryMethod\",\"types\":[\"Class\"],\"dcid\":\"DeliveryMethod\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Demand\",\"types\":[\"Class\"],\"dcid\":\"Demand\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DenseFogEvent\",\"types\":[\"Class\"],\"dcid\":\"DenseFogEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DenseSmokeEvent\",\"types\":[\"Class\"],\"dcid\":\"DenseSmokeEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Dentist\",\"types\":[\"Class\"],\"dcid\":\"Dentist\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DepartAction\",\"types\":[\"Class\"],\"dcid\":\"DepartAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Department\",\"types\":[\"Class\"],\"dcid\":\"Department\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DepartmentStore\",\"types\":[\"Class\"],\"dcid\":\"DepartmentStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DepositAccount\",\"types\":[\"Class\"],\"dcid\":\"DepositAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeprivationDomain\",\"types\":[\"Class\"],\"dcid\":\"DeprivationDomain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DepthClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"DepthClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DeviceUsedEnum\",\"types\":[\"Class\"],\"dcid\":\"DeviceUsedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DietTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"DietTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DigitalDocument\",\"types\":[\"Class\"],\"dcid\":\"DigitalDocument\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DigitalDocumentPermission\",\"types\":[\"Class\"],\"dcid\":\"DigitalDocumentPermission\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DigitalDocumentPermissionType\",\"types\":[\"Class\"],\"dcid\":\"DigitalDocumentPermissionType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DisagreeAction\",\"types\":[\"Class\"],\"dcid\":\"DisagreeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DisciplinaryActionEnum\",\"types\":[\"Class\"],\"dcid\":\"DisciplinaryActionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DiscoverAction\",\"types\":[\"Class\"],\"dcid\":\"DiscoverAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DiscussionForumPosting\",\"types\":[\"Class\"],\"dcid\":\"DiscussionForumPosting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Disease\",\"types\":[\"Class\"],\"dcid\":\"Disease\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DiseaseAssociation\",\"types\":[\"Class\"],\"dcid\":\"DiseaseAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DiseaseDiseaseAssociation\",\"types\":[\"Class\"],\"dcid\":\"DiseaseDiseaseAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DiseaseGeneAssociation\",\"types\":[\"Class\"],\"dcid\":\"DiseaseGeneAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DiseaseGeneticVariantAssociation\",\"types\":[\"Class\"],\"dcid\":\"DiseaseGeneticVariantAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DislikeAction\",\"types\":[\"Class\"],\"dcid\":\"DislikeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Distance\",\"types\":[\"Class\"],\"dcid\":\"Distance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DistrictMunicipality\",\"types\":[\"Class\"],\"dcid\":\"DistrictMunicipality\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Division\",\"types\":[\"Class\"],\"dcid\":\"Division\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DonateAction\",\"types\":[\"Class\"],\"dcid\":\"DonateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DosageFormEnum\",\"types\":[\"Class\"],\"dcid\":\"DosageFormEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DoseTimeFrameEnum\",\"types\":[\"Class\"],\"dcid\":\"DoseTimeFrameEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DownloadAction\",\"types\":[\"Class\"],\"dcid\":\"DownloadAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrawAction\",\"types\":[\"Class\"],\"dcid\":\"DrawAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrinkAction\",\"types\":[\"Class\"],\"dcid\":\"DrinkAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DriveWheelConfigurationValue\",\"types\":[\"Class\"],\"dcid\":\"DriveWheelConfigurationValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DroughtEvent\",\"types\":[\"Class\"],\"dcid\":\"DroughtEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Drug\",\"types\":[\"Class\"],\"dcid\":\"Drug\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrugDistribution\",\"types\":[\"Class\"],\"dcid\":\"DrugDistribution\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrugPrescriptionRequirementEnum\",\"types\":[\"Class\"],\"dcid\":\"DrugPrescriptionRequirementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrugStrength\",\"types\":[\"Class\"],\"dcid\":\"DrugStrength\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrugSupervisionRequirementEnum\",\"types\":[\"Class\"],\"dcid\":\"DrugSupervisionRequirementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DrugTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"DrugTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DryCleaningOrLaundry\",\"types\":[\"Class\"],\"dcid\":\"DryCleaningOrLaundry\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Duration\",\"types\":[\"Class\"],\"dcid\":\"Duration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DustDevilEvent\",\"types\":[\"Class\"],\"dcid\":\"DustDevilEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"DustStormEvent\",\"types\":[\"Class\"],\"dcid\":\"DustStormEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EDA_Estimate\",\"types\":[\"Class\"],\"dcid\":\"EDA_Estimate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EarthquakeEvent\",\"types\":[\"Class\"],\"dcid\":\"EarthquakeEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EarthquakeMagnitudeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"EarthquakeMagnitudeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EatAction\",\"types\":[\"Class\"],\"dcid\":\"EatAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EconomicActivity\",\"types\":[\"Class\"],\"dcid\":\"EconomicActivity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EconomicActivitySourceEnum\",\"types\":[\"Class\"],\"dcid\":\"EconomicActivitySourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EconomicMetricEnum\",\"types\":[\"Class\"],\"dcid\":\"EconomicMetricEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EconomicProductEnum\",\"types\":[\"Class\"],\"dcid\":\"EconomicProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EconomicProgramTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"EconomicProgramTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EconomicSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"EconomicSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationCertificationEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationCertificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationEvent\",\"types\":[\"Class\"],\"dcid\":\"EducationEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationFacility\",\"types\":[\"Class\"],\"dcid\":\"EducationFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationSkillsAndTrainingDeprivation\",\"types\":[\"Class\"],\"dcid\":\"EducationSkillsAndTrainingDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalAchievementLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationalAchievementLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalAttainmentEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationalAttainmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalAudience\",\"types\":[\"Class\"],\"dcid\":\"EducationalAudience\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalInstitutionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationalInstitutionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalMajorEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationalMajorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationalMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalOrganization\",\"types\":[\"Class\"],\"dcid\":\"EducationalOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EducationalStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"EducationalStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectedOffice\",\"types\":[\"Class\"],\"dcid\":\"ElectedOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Election\",\"types\":[\"Class\"],\"dcid\":\"Election\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectionCampaign\",\"types\":[\"Class\"],\"dcid\":\"ElectionCampaign\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectoralWard\",\"types\":[\"Class\"],\"dcid\":\"ElectoralWard\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectricUtility\",\"types\":[\"Class\",\"CoalConsumingSectorEnum\"],\"dcid\":\"ElectricUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Electrician\",\"types\":[\"Class\"],\"dcid\":\"Electrician\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Electricity\",\"types\":[\"Class\"],\"dcid\":\"Electricity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectricityConsumer\",\"types\":[\"Class\"],\"dcid\":\"ElectricityConsumer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectricityConsumptionSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"ElectricityConsumptionSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectricityFromNuclearSources\",\"types\":[\"Class\"],\"dcid\":\"ElectricityFromNuclearSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectricityFromOilGasOrCoalSources\",\"types\":[\"Class\"],\"dcid\":\"ElectricityFromOilGasOrCoalSources\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectricityProductionSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"ElectricityProductionSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectronicGadgetUsedEnum\",\"types\":[\"Class\"],\"dcid\":\"ElectronicGadgetUsedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElectronicsStore\",\"types\":[\"Class\"],\"dcid\":\"ElectronicsStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Elementary School\",\"types\":[\"Class\",\"SchoolLevelEnum\"],\"dcid\":\"ElementarySchool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ElementarySchoolDistrict\",\"types\":[\"Class\"],\"dcid\":\"ElementarySchoolDistrict\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmailMessage\",\"types\":[\"Class\"],\"dcid\":\"EmailMessage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Embassy\",\"types\":[\"Class\"],\"dcid\":\"Embassy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmergencyRoom\",\"types\":[\"Class\"],\"dcid\":\"EmergencyRoom\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmergencyService\",\"types\":[\"Class\"],\"dcid\":\"EmergencyService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmfExposureBodyPartEnum\",\"types\":[\"Class\"],\"dcid\":\"EmfExposureBodyPartEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmfExposureGroupEnum\",\"types\":[\"Class\"],\"dcid\":\"EmfExposureGroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmfFrequencyEnum\",\"types\":[\"Class\"],\"dcid\":\"EmfFrequencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmfRadioBandEnum\",\"types\":[\"Class\"],\"dcid\":\"EmfRadioBandEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Emirate\",\"types\":[\"Class\"],\"dcid\":\"Emirate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmissionSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"EmissionSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmissionSourceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"EmissionSourceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Emissions\",\"types\":[\"Class\"],\"dcid\":\"Emissions\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmployeeRole\",\"types\":[\"Class\"],\"dcid\":\"EmployeeRole\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmploymentAgency\",\"types\":[\"Class\"],\"dcid\":\"EmploymentAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmploymentDeprivation\",\"types\":[\"Class\"],\"dcid\":\"EmploymentDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmploymentEnum\",\"types\":[\"Class\"],\"dcid\":\"EmploymentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmploymentExperienceStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"EmploymentExperienceStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EmploymentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"EmploymentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeAward\",\"types\":[\"Class\"],\"dcid\":\"EncodeAward\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeBedFile\",\"types\":[\"Class\"],\"dcid\":\"EncodeBedFile\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeBiosample\",\"types\":[\"Class\"],\"dcid\":\"EncodeBiosample\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeBiosampleType\",\"types\":[\"Class\"],\"dcid\":\"EncodeBiosampleType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeEntity\",\"types\":[\"Class\"],\"dcid\":\"EncodeEntity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeExperiment\",\"types\":[\"Class\"],\"dcid\":\"EncodeExperiment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EncodeLibrary\",\"types\":[\"Class\"],\"dcid\":\"EncodeLibrary\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EndorseAction\",\"types\":[\"Class\"],\"dcid\":\"EndorseAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Energy\",\"types\":[\"Class\",\"ConsumerGoodsCategoryEnum\"],\"dcid\":\"Energy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnergyConsumptionSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"EnergyConsumptionSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnergyGeneration\",\"types\":[\"Class\"],\"dcid\":\"EnergyGeneration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnergyLossEnum\",\"types\":[\"Class\"],\"dcid\":\"EnergyLossEnum\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOb4wAwAAAP//AQAA//9rtwC6UQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
#> [2] "{\"data\":{\"Class\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"EnergyReservesEnum\",\"types\":[\"Class\"],\"dcid\":\"EnergyReservesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnergySourceEnum\",\"types\":[\"Class\"],\"dcid\":\"EnergySourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnergyStocksEnum\",\"types\":[\"Class\"],\"dcid\":\"EnergyStocksEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnergyUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"EnergyUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EngineSpecification\",\"types\":[\"Class\"],\"dcid\":\"EngineSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnglishProficiencyEnum\",\"types\":[\"Class\"],\"dcid\":\"EnglishProficiencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnrollmentLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"EnrollmentLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnrollmentProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"EnrollmentProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EnrollmentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"EnrollmentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EntertainmentBusiness\",\"types\":[\"Class\"],\"dcid\":\"EntertainmentBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EntityResolutionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"EntityResolutionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EntryPoint\",\"types\":[\"Class\"],\"dcid\":\"EntryPoint\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Enumeration\",\"types\":[\"Class\"],\"dcid\":\"Enumeration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EpaParentCompany\",\"types\":[\"Class\"],\"dcid\":\"EpaParentCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EpaReportingFacility\",\"types\":[\"Class\"],\"dcid\":\"EpaReportingFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EpaSccCodeEnum\",\"types\":[\"Class\"],\"dcid\":\"EpaSccCodeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Episode\",\"types\":[\"Class\"],\"dcid\":\"Episode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Establishment\",\"types\":[\"Class\"],\"dcid\":\"Establishment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EstablishmentOwnershipEnum\",\"types\":[\"Class\"],\"dcid\":\"EstablishmentOwnershipEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EstablishmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"EstablishmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EthnicityEnum\",\"types\":[\"Class\"],\"dcid\":\"EthnicityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EtiologyEnum\",\"types\":[\"Class\"],\"dcid\":\"EtiologyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EurostatNUTS1\",\"types\":[\"Class\"],\"dcid\":\"EurostatNUTS1\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EurostatNUTS2\",\"types\":[\"Class\"],\"dcid\":\"EurostatNUTS2\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EurostatNUTS3\",\"types\":[\"Class\"],\"dcid\":\"EurostatNUTS3\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Event\",\"types\":[\"Class\"],\"dcid\":\"Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EventReservation\",\"types\":[\"Class\"],\"dcid\":\"EventReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EventReviewStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"EventReviewStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EventStatusType\",\"types\":[\"Class\"],\"dcid\":\"EventStatusType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"EventVenue\",\"types\":[\"Class\"],\"dcid\":\"EventVenue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExcessiveHeatEvent\",\"types\":[\"Class\"],\"dcid\":\"ExcessiveHeatEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExcludingEducation\",\"types\":[\"Class\"],\"dcid\":\"ExcludingEducation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExerciseAction\",\"types\":[\"Class\"],\"dcid\":\"ExerciseAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExerciseGym\",\"types\":[\"Class\"],\"dcid\":\"ExerciseGym\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExerciseTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ExerciseTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExhibitionEvent\",\"types\":[\"Class\"],\"dcid\":\"ExhibitionEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExpenditureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ExpenditureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ExtremeColdWindChillEvent\",\"types\":[\"Class\"],\"dcid\":\"ExtremeColdWindChillEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FBI_MeasurementQualifierEnum\",\"types\":[\"Class\"],\"dcid\":\"FBI_MeasurementQualifierEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FDAApplication\",\"types\":[\"Class\"],\"dcid\":\"FDAApplication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FECAllCandidatesTwoYearFinancialSummary\",\"types\":[\"Class\"],\"dcid\":\"FECAllCandidatesTwoYearFinancialSummary\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FECCandidateAccount\",\"types\":[\"Class\"],\"dcid\":\"FECCandidateAccount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FEMAFloodZoneEnum\",\"types\":[\"Class\"],\"dcid\":\"FEMAFloodZoneEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FactorForInternetServiceEnum\",\"types\":[\"Class\"],\"dcid\":\"FactorForInternetServiceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Faculty\",\"types\":[\"Class\"],\"dcid\":\"Faculty\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FacultyTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FacultyTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FamilyIncomeEnum\",\"types\":[\"Class\"],\"dcid\":\"FamilyIncomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FamilyPlanningTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FamilyPlanningTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FamilyPovertyStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"FamilyPovertyStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FamilyTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FamilyTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Farm\",\"types\":[\"Class\"],\"dcid\":\"Farm\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FarmInventory\",\"types\":[\"Class\"],\"dcid\":\"FarmInventory\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FarmInventoryStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"FarmInventoryStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FarmInventoryTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FarmInventoryTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FarmTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FarmTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FastFoodRestaurant\",\"types\":[\"Class\"],\"dcid\":\"FastFoodRestaurant\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FederalSubject\",\"types\":[\"Class\"],\"dcid\":\"FederalSubject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FercStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"FercStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Festival\",\"types\":[\"Class\"],\"dcid\":\"Festival\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FilmAction\",\"types\":[\"Class\"],\"dcid\":\"FilmAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FinancialIncentive\",\"types\":[\"Class\"],\"dcid\":\"FinancialIncentive\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FinancialInstrument\",\"types\":[\"Class\"],\"dcid\":\"FinancialInstrument\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FinancialProduct\",\"types\":[\"Class\"],\"dcid\":\"FinancialProduct\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FinancialProductEnum\",\"types\":[\"Class\"],\"dcid\":\"FinancialProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FinancialService\",\"types\":[\"Class\"],\"dcid\":\"FinancialService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FinancialTransaction\",\"types\":[\"Class\"],\"dcid\":\"FinancialTransaction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FindAction\",\"types\":[\"Class\"],\"dcid\":\"FindAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireCauseEnum\",\"types\":[\"Class\"],\"dcid\":\"FireCauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireCauseGeneralEnum\",\"types\":[\"Class\"],\"dcid\":\"FireCauseGeneralEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireCauseSpecificEnum\",\"types\":[\"Class\"],\"dcid\":\"FireCauseSpecificEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireEvent\",\"types\":[\"Class\"],\"dcid\":\"FireEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireIncidentComplexEvent\",\"types\":[\"Class\"],\"dcid\":\"FireIncidentComplexEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireIncidentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FireIncidentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FireStation\",\"types\":[\"Class\"],\"dcid\":\"FireStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FirearmPossessionStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"FirearmPossessionStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FlashFloodEvent\",\"types\":[\"Class\"],\"dcid\":\"FlashFloodEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Flight\",\"types\":[\"Class\"],\"dcid\":\"Flight\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FlightReservation\",\"types\":[\"Class\"],\"dcid\":\"FlightReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Float\",\"types\":[\"Class\"],\"dcid\":\"Float\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FloodCauseEnum\",\"types\":[\"Class\"],\"dcid\":\"FloodCauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FloodEvent\",\"types\":[\"Class\"],\"dcid\":\"FloodEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Florist\",\"types\":[\"Class\"],\"dcid\":\"Florist\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FollowAction\",\"types\":[\"Class\"],\"dcid\":\"FollowAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Food\",\"types\":[\"Class\"],\"dcid\":\"Food\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodBasket\",\"types\":[\"Class\"],\"dcid\":\"FoodBasket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodBasketStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"FoodBasketStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodEstablishment\",\"types\":[\"Class\"],\"dcid\":\"FoodEstablishment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodEstablishmentReservation\",\"types\":[\"Class\"],\"dcid\":\"FoodEstablishmentReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodEstablishmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FoodEstablishmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodEvent\",\"types\":[\"Class\"],\"dcid\":\"FoodEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodIntakeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FoodIntakeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodSecurityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"FoodSecurityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodService\",\"types\":[\"Class\"],\"dcid\":\"FoodService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FoodTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"FoodTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FreezingFogEvent\",\"types\":[\"Class\"],\"dcid\":\"FreezingFogEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FrequencyEnum\",\"types\":[\"Class\"],\"dcid\":\"FrequencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FrostFreezeEvent\",\"types\":[\"Class\"],\"dcid\":\"FrostFreezeEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Fuel\",\"types\":[\"Class\"],\"dcid\":\"Fuel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FuelUsageSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"FuelUsageSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FundingForAssistiveTechProductEnum\",\"types\":[\"Class\"],\"dcid\":\"FundingForAssistiveTechProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FunnelCloudEvent\",\"types\":[\"Class\"],\"dcid\":\"FunnelCloudEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"FurnitureStore\",\"types\":[\"Class\"],\"dcid\":\"FurnitureStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GOTermEvidenceCodeEnum\",\"types\":[\"Class\"],\"dcid\":\"GOTermEvidenceCodeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GOTermQualifierEnum\",\"types\":[\"Class\"],\"dcid\":\"GOTermQualifierEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Game\",\"types\":[\"Class\"],\"dcid\":\"Game\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GamePlayMode\",\"types\":[\"Class\"],\"dcid\":\"GamePlayMode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GameServer\",\"types\":[\"Class\"],\"dcid\":\"GameServer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GameServerStatus\",\"types\":[\"Class\"],\"dcid\":\"GameServerStatus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GardenStore\",\"types\":[\"Class\"],\"dcid\":\"GardenStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GasStation\",\"types\":[\"Class\"],\"dcid\":\"GasStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GasType\",\"types\":[\"Class\"],\"dcid\":\"GasType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GatedResidenceCommunity\",\"types\":[\"Class\"],\"dcid\":\"GatedResidenceCommunity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenVarSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"GenVarSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenderType\",\"types\":[\"Class\"],\"dcid\":\"GenderType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Gene\",\"types\":[\"Class\"],\"dcid\":\"Gene\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneFeatureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneFeatureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneFeatureTypeMiscellaneousEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneFeatureTypeMiscellaneousEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneFeatureTypeMiscellaneousRecombinationEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneFeatureTypeMiscellaneousRecombinationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneGeneAssociation\",\"types\":[\"Class\"],\"dcid\":\"GeneGeneAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneGeneticVariantAssociation\",\"types\":[\"Class\"],\"dcid\":\"GeneGeneticVariantAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneMendelianInheritanceInManIdentifierAssociation\",\"types\":[\"Class\"],\"dcid\":\"GeneMendelianInheritanceInManIdentifierAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneOmimRelationshipCommentEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneOmimRelationshipCommentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneOmimRelationshipSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneOmimRelationshipSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneOmimRelationshipTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneOmimRelationshipTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneOntologyCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneOntologyCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneOntologyTerm\",\"types\":[\"Class\"],\"dcid\":\"GeneOntologyTerm\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneReferenceIntoFunction\",\"types\":[\"Class\"],\"dcid\":\"GeneReferenceIntoFunction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneralContractor\",\"types\":[\"Class\"],\"dcid\":\"GeneralContractor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneralElection\",\"types\":[\"Class\"],\"dcid\":\"GeneralElection\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneralKnowledgeEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneralKnowledgeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneratedSewageEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneratedSewageEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneratorTechnologyEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneratorTechnologyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticAssociation\",\"types\":[\"Class\"],\"dcid\":\"GeneticAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticAssoication\",\"types\":[\"Class\"],\"dcid\":\"GeneticAssoication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariant\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariant\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantAlignmentQualityEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantAlignmentQualityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantAttributeEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantAttributeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantClassEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantClassEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantCopyNumberVariation\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantCopyNumberVariation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantExceptionEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantExceptionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantFunctionalCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantFunctionalCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantGeneticVariantAssociation\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantGeneticVariantAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantLocTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantLocTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantMolTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantMolTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeneticVariantValidationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"GeneticVariantValidationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAnnotation\",\"types\":[\"Class\"],\"dcid\":\"GenomeAnnotation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAssembly\",\"types\":[\"Class\"],\"dcid\":\"GenomeAssembly\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAssemblyDerivedFromEnum\",\"types\":[\"Class\"],\"dcid\":\"GenomeAssemblyDerivedFromEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAssemblyLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"GenomeAssemblyLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAssemblyReleaseTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"GenomeAssemblyReleaseTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAssemblyTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"GenomeAssemblyTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeAssemblyUnit\",\"types\":[\"Class\"],\"dcid\":\"GenomeAssemblyUnit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomeCoverageEnum\",\"types\":[\"Class\"],\"dcid\":\"GenomeCoverageEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomicCoordinates\",\"types\":[\"Class\"],\"dcid\":\"GenomicCoordinates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomicPosition\",\"types\":[\"Class\"],\"dcid\":\"GenomicPosition\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GenomicRegion\",\"types\":[\"Class\"],\"dcid\":\"GenomicRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoCircle\",\"types\":[\"Class\"],\"dcid\":\"GeoCircle\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoCoordinates\",\"types\":[\"Class\"],\"dcid\":\"GeoCoordinates\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoGridPlace_0.25Deg\",\"types\":[\"Class\"],\"dcid\":\"GeoGridPlace_0.25Deg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoGridPlace_1Deg\",\"types\":[\"Class\"],\"dcid\":\"GeoGridPlace_1Deg\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoGridPlace_4KM\",\"types\":[\"Class\"],\"dcid\":\"GeoGridPlace_4KM\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoRegion\",\"types\":[\"Class\"],\"dcid\":\"GeoRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeoShape\",\"types\":[\"Class\"],\"dcid\":\"GeoShape\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeographicalBarriersToServices\",\"types\":[\"Class\"],\"dcid\":\"GeographicalBarriersToServices\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeographicalIndicatorEnum\",\"types\":[\"Class\"],\"dcid\":\"GeographicalIndicatorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GeologicalEvent\",\"types\":[\"Class\"],\"dcid\":\"GeologicalEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GiveAction\",\"types\":[\"Class\"],\"dcid\":\"GiveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Glacier\",\"types\":[\"Class\"],\"dcid\":\"Glacier\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GlobalActivityLimitationIndicatorEnum\",\"types\":[\"Class\"],\"dcid\":\"GlobalActivityLimitationIndicatorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GlobalObservatoryForEHealthQuestionEnum\",\"types\":[\"Class\"],\"dcid\":\"GlobalObservatoryForEHealthQuestionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GolfCourse\",\"types\":[\"Class\"],\"dcid\":\"GolfCourse\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Government\",\"types\":[\"Class\"],\"dcid\":\"Government\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentBuilding\",\"types\":[\"Class\"],\"dcid\":\"GovernmentBuilding\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentIdEnum\",\"types\":[\"Class\"],\"dcid\":\"GovernmentIdEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentIdentifierEnum\",\"types\":[\"Class\"],\"dcid\":\"GovernmentIdentifierEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentOffice\",\"types\":[\"Class\"],\"dcid\":\"GovernmentOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentOrganization\",\"types\":[\"Class\"],\"dcid\":\"GovernmentOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentPaymentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"GovernmentPaymentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentPermit\",\"types\":[\"Class\"],\"dcid\":\"GovernmentPermit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentService\",\"types\":[\"Class\"],\"dcid\":\"GovernmentService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GovernmentSupportableCommunityActionEnum\",\"types\":[\"Class\"],\"dcid\":\"GovernmentSupportableCommunityActionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Governorate\",\"types\":[\"Class\"],\"dcid\":\"Governorate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GraduationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"GraduationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Graupel\",\"types\":[\"Class\"],\"dcid\":\"Graupel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GreenhouseGas\",\"types\":[\"Class\"],\"dcid\":\"GreenhouseGas\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GroceryStore\",\"types\":[\"Class\"],\"dcid\":\"GroceryStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"GroupingOfPeopleEnum\",\"types\":[\"Class\"],\"dcid\":\"GroupingOfPeopleEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HVACBusiness\",\"types\":[\"Class\"],\"dcid\":\"HVACBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HailEvent\",\"types\":[\"Class\"],\"dcid\":\"HailEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HairSalon\",\"types\":[\"Class\"],\"dcid\":\"HairSalon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HardwareStore\",\"types\":[\"Class\"],\"dcid\":\"HardwareStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HasChildrenStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"HasChildrenStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HateCrimeIncidents\",\"types\":[\"Class\"],\"dcid\":\"HateCrimeIncidents\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthAndBeautyBusiness\",\"types\":[\"Class\"],\"dcid\":\"HealthAndBeautyBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthAndDisabilityDeprivation\",\"types\":[\"Class\"],\"dcid\":\"HealthAndDisabilityDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthBehaviorEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthBehaviorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthCareAdviceEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthCareAdviceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthCareFacilityTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthCareFacilityTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthClub\",\"types\":[\"Class\"],\"dcid\":\"HealthClub\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthDepartmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthDepartmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthEstablishment\",\"types\":[\"Class\"],\"dcid\":\"HealthEstablishment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthEstablishmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthEstablishmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthOutcomeEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthOutcomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthPreventionActionFrequencyEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthPreventionActionFrequencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthPreventionEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthPreventionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthRelatedSocialNeedEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthRelatedSocialNeedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthWorkerEnum\",\"types\":[\"Class\"],\"dcid\":\"HealthWorkerEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HealthcareWorker\",\"types\":[\"Class\"],\"dcid\":\"HealthcareWorker\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HeatEvent\",\"types\":[\"Class\"],\"dcid\":\"HeatEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HeatTemperatureEvent\",\"types\":[\"Class\"],\"dcid\":\"HeatTemperatureEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HeatWaveEvent\",\"types\":[\"Class\"],\"dcid\":\"HeatWaveEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HeavyRainEvent\",\"types\":[\"Class\"],\"dcid\":\"HeavyRainEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HeavySnowEvent\",\"types\":[\"Class\"],\"dcid\":\"HeavySnowEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HeavyWindEvent\",\"types\":[\"Class\"],\"dcid\":\"HeavyWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HighSchool\",\"types\":[\"Class\",\"SchoolLevelEnum\"],\"dcid\":\"HighSchool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HighSchoolDistrict\",\"types\":[\"Class\"],\"dcid\":\"HighSchoolDistrict\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HighSnowEvent\",\"types\":[\"Class\"],\"dcid\":\"HighSnowEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HighSurfEvent\",\"types\":[\"Class\"],\"dcid\":\"HighSurfEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HighWindEvent\",\"types\":[\"Class\"],\"dcid\":\"HighWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HighlyEffectiveContraceptiveMethodsEnum\",\"types\":[\"Class\"],\"dcid\":\"HighlyEffectiveContraceptiveMethodsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HinduTemple\",\"types\":[\"Class\"],\"dcid\":\"HinduTemple\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HivHepatitisServicesAvailableEnum\",\"types\":[\"Class\"],\"dcid\":\"HivHepatitisServicesAvailableEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HobbyShop\",\"types\":[\"Class\"],\"dcid\":\"HobbyShop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HomeAndConstructionBusiness\",\"types\":[\"Class\"],\"dcid\":\"HomeAndConstructionBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HomeGoodsStore\",\"types\":[\"Class\"],\"dcid\":\"HomeGoodsStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HomicideOccurrenceEnum\",\"types\":[\"Class\"],\"dcid\":\"HomicideOccurrenceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Hospital\",\"types\":[\"Class\"],\"dcid\":\"Hospital\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HospitalBed\",\"types\":[\"Class\"],\"dcid\":\"HospitalBed\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Hostel\",\"types\":[\"Class\"],\"dcid\":\"Hostel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Hotel\",\"types\":[\"Class\"],\"dcid\":\"Hotel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HotelRoom\",\"types\":[\"Class\"],\"dcid\":\"HotelRoom\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"House\",\"types\":[\"AssetsOwnedEnum\",\"BirthCenterEnum\",\"Class\"],\"dcid\":\"House\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HousePainter\",\"types\":[\"Class\"],\"dcid\":\"HousePainter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Household\",\"types\":[\"Class\",\"USC_ResidenceTypeEnum\"],\"dcid\":\"Household\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HouseholdCompositionByAgeEnum\",\"types\":[\"Class\"],\"dcid\":\"HouseholdCompositionByAgeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HouseholdDecisionMakingEnum\",\"types\":[\"Class\"],\"dcid\":\"HouseholdDecisionMakingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HouseholdFacilityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"HouseholdFacilityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HouseholdIncomeEnum\",\"types\":[\"Class\"],\"dcid\":\"HouseholdIncomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HouseholdTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"HouseholdTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HouseholdWealthEnum\",\"types\":[\"Class\"],\"dcid\":\"HouseholdWealthEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HousingDeprivation\",\"types\":[\"Class\"],\"dcid\":\"HousingDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HousingMemberStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"HousingMemberStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HousingUnit\",\"types\":[\"Class\",\"USC_ResidenceTypeEnum\"],\"dcid\":\"HousingUnit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowTo\",\"types\":[\"Class\"],\"dcid\":\"HowTo\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToDirection\",\"types\":[\"Class\"],\"dcid\":\"HowToDirection\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToItem\",\"types\":[\"Class\"],\"dcid\":\"HowToItem\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToSection\",\"types\":[\"Class\"],\"dcid\":\"HowToSection\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToStep\",\"types\":[\"Class\"],\"dcid\":\"HowToStep\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToSupply\",\"types\":[\"Class\"],\"dcid\":\"HowToSupply\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToTip\",\"types\":[\"Class\"],\"dcid\":\"HowToTip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HowToTool\",\"types\":[\"Class\"],\"dcid\":\"HowToTool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HumanCellTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"HumanCellTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HumanProteinOccurrence\",\"types\":[\"Class\"],\"dcid\":\"HumanProteinOccurrence\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HumanProteinOccurrenceReliabilityEnum\",\"types\":[\"Class\"],\"dcid\":\"HumanProteinOccurrenceReliabilityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HumanSettlementClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"HumanSettlementClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HumanTissueEnum\",\"types\":[\"Class\"],\"dcid\":\"HumanTissueEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HumidityParameterCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"HumidityParameterCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HurricaneEvent\",\"types\":[\"Class\"],\"dcid\":\"HurricaneEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"HurricaneTyphoonEvent\",\"types\":[\"Class\"],\"dcid\":\"HurricaneTyphoonEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IBTrACS_CycloneTrackTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"IBTrACS_CycloneTrackTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ICD10Code\",\"types\":[\"Class\"],\"dcid\":\"ICD10Code\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ICD10Section\",\"types\":[\"Class\"],\"dcid\":\"ICD10Section\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ICD10_113CausesOfDeath\",\"types\":[\"Class\"],\"dcid\":\"ICD10_113CausesOfDeath\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IPCCPlace_25\",\"types\":[\"Class\"],\"dcid\":\"IPCCPlace_25\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IPCCPlace_50\",\"types\":[\"Class\"],\"dcid\":\"IPCCPlace_50\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ISICv3.1Enum\",\"types\":[\"Class\"],\"dcid\":\"ISICv3.1Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ice\",\"types\":[\"Class\"],\"dcid\":\"Ice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IceCover\",\"types\":[\"Class\"],\"dcid\":\"IceCover\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IceCreamShop\",\"types\":[\"Class\"],\"dcid\":\"IceCreamShop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IceStormEvent\",\"types\":[\"Class\"],\"dcid\":\"IceStormEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IdentityActivityEnum\",\"types\":[\"Class\"],\"dcid\":\"IdentityActivityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IgnoreAction\",\"types\":[\"Class\"],\"dcid\":\"IgnoreAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IhrSparCapacityLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"IhrSparCapacityLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ImageGallery\",\"types\":[\"Class\"],\"dcid\":\"ImageGallery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ImageObject\",\"types\":[\"Class\"],\"dcid\":\"ImageObject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ImputationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ImputationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncarcerationEvent\",\"types\":[\"Class\"],\"dcid\":\"IncarcerationEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncarcerationEventTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"IncarcerationEventTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncentiveCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"IncentiveCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncentiveTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"IncentiveTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Incident\",\"types\":[\"Class\"],\"dcid\":\"Incident\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncomeDeprivation\",\"types\":[\"Class\"],\"dcid\":\"IncomeDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncomeMeasurementEnum\",\"types\":[\"Class\"],\"dcid\":\"IncomeMeasurementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncomePaymentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"IncomePaymentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncomeSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"IncomeSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncomeStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"IncomeStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IncomeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"IncomeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndexScoreEnum\",\"types\":[\"Class\"],\"dcid\":\"IndexScoreEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndividualProduct\",\"types\":[\"Class\"],\"dcid\":\"IndividualProduct\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndoorLivingEnvironmentDeprivation\",\"types\":[\"Class\"],\"dcid\":\"IndoorLivingEnvironmentDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndustrialProductionIndexEnum\",\"types\":[\"Class\"],\"dcid\":\"IndustrialProductionIndexEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndustrialProductionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"IndustrialProductionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndustryEnum\",\"types\":[\"Class\"],\"dcid\":\"IndustryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IndustryTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"IndustryTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Infant\",\"types\":[\"AgeGroupClassificationEnum\",\"Class\"],\"dcid\":\"Infant\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InformAction\",\"types\":[\"Class\"],\"dcid\":\"InformAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Infrastructure\",\"types\":[\"Class\"],\"dcid\":\"Infrastructure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InfrastructureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"InfrastructureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InsertAction\",\"types\":[\"Class\"],\"dcid\":\"InsertAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstallAction\",\"types\":[\"Class\"],\"dcid\":\"InstallAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstitutionControlEnum\",\"types\":[\"Class\"],\"dcid\":\"InstitutionControlEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstitutionSizeEnum\",\"types\":[\"Class\"],\"dcid\":\"InstitutionSizeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstitutionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"InstitutionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstitutionalizationEnum\",\"types\":[\"Class\"],\"dcid\":\"InstitutionalizationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstructionModeEnum\",\"types\":[\"Class\"],\"dcid\":\"InstructionModeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InstrumentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"InstrumentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InsuranceAgency\",\"types\":[\"Class\"],\"dcid\":\"InsuranceAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InsuredItemEnum\",\"types\":[\"Class\"],\"dcid\":\"InsuredItemEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Intangible\",\"types\":[\"Class\"],\"dcid\":\"Intangible\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Integer\",\"types\":[\"Class\"],\"dcid\":\"Integer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InteractAction\",\"types\":[\"Class\"],\"dcid\":\"InteractAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InteractionCounter\",\"types\":[\"Class\"],\"dcid\":\"InteractionCounter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InteractionDetectionMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"InteractionDetectionMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InteractionSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"InteractionSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InteractionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"InteractionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InternetAccessStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"InternetAccessStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InternetCafe\",\"types\":[\"Class\"],\"dcid\":\"InternetCafe\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InternetUsageLocationEnum\",\"types\":[\"Class\"],\"dcid\":\"InternetUsageLocationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InternetUsagePurposeEnum\",\"types\":[\"Class\"],\"dcid\":\"InternetUsagePurposeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IntimatePartnerViolenceEnum\",\"types\":[\"Class\"],\"dcid\":\"IntimatePartnerViolenceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Investment\",\"types\":[\"Class\"],\"dcid\":\"Investment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InvestmentOrDeposit\",\"types\":[\"Class\"],\"dcid\":\"InvestmentOrDeposit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InvestmentProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"InvestmentProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InvestmentSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"InvestmentSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"InviteAction\",\"types\":[\"Class\"],\"dcid\":\"InviteAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Invoice\",\"types\":[\"Class\"],\"dcid\":\"Invoice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Island\",\"types\":[\"Class\"],\"dcid\":\"Island\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"IssuerBankEnum\",\"types\":[\"Class\"],\"dcid\":\"IssuerBankEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ItemAvailability\",\"types\":[\"Class\"],\"dcid\":\"ItemAvailability\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ItemList\",\"types\":[\"Class\"],\"dcid\":\"ItemList\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ItemListOrderType\",\"types\":[\"Class\"],\"dcid\":\"ItemListOrderType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ItemPage\",\"types\":[\"Class\"],\"dcid\":\"ItemPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"JewelryStore\",\"types\":[\"Class\"],\"dcid\":\"JewelryStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"JobChangeEventEnum\",\"types\":[\"Class\"],\"dcid\":\"JobChangeEventEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"JobPosting\",\"types\":[\"Class\"],\"dcid\":\"JobPosting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"JobStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"JobStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Jobs\",\"types\":[\"Class\"],\"dcid\":\"Jobs\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"JoinAction\",\"types\":[\"Class\"],\"dcid\":\"JoinAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"JurisdictionEnum\",\"types\":[\"Class\"],\"dcid\":\"JurisdictionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Kelvin\",\"types\":[\"Class\"],\"dcid\":\"Kelvin\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"KiloVolt\",\"types\":[\"Class\"],\"dcid\":\"KiloVolt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"KilogramsPerMeterSquaredSecond\",\"types\":[\"Class\"],\"dcid\":\"KilogramsPerMeterSquaredSecond\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Lab\",\"types\":[\"Class\"],\"dcid\":\"Lab\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Lake\",\"types\":[\"Class\"],\"dcid\":\"Lake\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LakeBodyOfWater\",\"types\":[\"Class\"],\"dcid\":\"LakeBodyOfWater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LakeEffectSnowEvent\",\"types\":[\"Class\"],\"dcid\":\"LakeEffectSnowEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LakeshoreFloodEvent\",\"types\":[\"Class\"],\"dcid\":\"LakeshoreFloodEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LandCover\",\"types\":[\"Class\"],\"dcid\":\"LandCover\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LandCoverClassEnum\",\"types\":[\"Class\"],\"dcid\":\"LandCoverClassEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Landform\",\"types\":[\"Class\"],\"dcid\":\"Landform\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LandmarksOrHistoricalBuildings\",\"types\":[\"Class\"],\"dcid\":\"LandmarksOrHistoricalBuildings\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LandslideEvent\",\"types\":[\"Class\"],\"dcid\":\"LandslideEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Language\",\"types\":[\"Class\"],\"dcid\":\"Language\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LanguageFluencyLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"LanguageFluencyLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LanguageLearnedEnum\",\"types\":[\"Class\"],\"dcid\":\"LanguageLearnedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LanguageLearningAgeGroupEnum\",\"types\":[\"Class\"],\"dcid\":\"LanguageLearningAgeGroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LanguageLearningStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"LanguageLearningStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LanguageSpokenAtHomeEnum\",\"types\":[\"Class\"],\"dcid\":\"LanguageSpokenAtHomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LeaveAction\",\"types\":[\"Class\"],\"dcid\":\"LeaveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LegalPenaltyTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"LegalPenaltyTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LegalService\",\"types\":[\"Class\"],\"dcid\":\"LegalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Legislation\",\"types\":[\"Class\"],\"dcid\":\"Legislation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LegislationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"LegislationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LegislativeBuilding\",\"types\":[\"Class\"],\"dcid\":\"LegislativeBuilding\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LendAction\",\"types\":[\"Class\"],\"dcid\":\"LendAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LendingEntityEnum\",\"types\":[\"Class\"],\"dcid\":\"LendingEntityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LengthUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"LengthUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Library\",\"types\":[\"AmenityFeatureEnum\",\"Class\"],\"dcid\":\"Library\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LicenseTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"LicenseTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LightConditionEnum\",\"types\":[\"Class\"],\"dcid\":\"LightConditionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LightningEvent\",\"types\":[\"Class\",\"FireCauseGeneralEnum\"],\"dcid\":\"LightningEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LikeAction\",\"types\":[\"Class\"],\"dcid\":\"LikeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LiquorStore\",\"types\":[\"Class\"],\"dcid\":\"LiquorStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ListItem\",\"types\":[\"Class\"],\"dcid\":\"ListItem\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ListenAction\",\"types\":[\"Class\"],\"dcid\":\"ListenAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LiteracyStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"LiteracyStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LiteraryEvent\",\"types\":[\"Class\"],\"dcid\":\"LiteraryEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LiveBirthPregnancyEvent\",\"types\":[\"Class\"],\"dcid\":\"LiveBirthPregnancyEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LiveBlogPosting\",\"types\":[\"Class\"],\"dcid\":\"LiveBlogPosting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LivingEnvironmentDeprivation\",\"types\":[\"Class\"],\"dcid\":\"LivingEnvironmentDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LoanOrCredit\",\"types\":[\"Class\"],\"dcid\":\"LoanOrCredit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LocalBusiness\",\"types\":[\"Class\"],\"dcid\":\"LocalBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Locality\",\"types\":[\"Class\"],\"dcid\":\"Locality\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LocationClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"LocationClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LocationFeatureSpecification\",\"types\":[\"Class\"],\"dcid\":\"LocationFeatureSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LocationOfCrimeEnum\",\"types\":[\"Class\"],\"dcid\":\"LocationOfCrimeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LocationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"LocationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LockerDelivery\",\"types\":[\"Class\"],\"dcid\":\"LockerDelivery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Locksmith\",\"types\":[\"Class\"],\"dcid\":\"Locksmith\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LodgingBusiness\",\"types\":[\"Class\"],\"dcid\":\"LodgingBusiness\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LodgingReservation\",\"types\":[\"Class\"],\"dcid\":\"LodgingReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LoseAction\",\"types\":[\"Class\"],\"dcid\":\"LoseAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LowerLayerSuperOutputArea\",\"types\":[\"Class\"],\"dcid\":\"LowerLayerSuperOutputArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LunchEligibilityEnum\",\"types\":[\"Class\"],\"dcid\":\"LunchEligibilityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"LunchTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"LunchTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MagnetSchoolEnum\",\"types\":[\"Class\"],\"dcid\":\"MagnetSchoolEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MainSubstanceAtTreatmentEnum\",\"types\":[\"Class\"],\"dcid\":\"MainSubstanceAtTreatmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MannerOfCollisionEnum\",\"types\":[\"Class\"],\"dcid\":\"MannerOfCollisionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Map\",\"types\":[\"Class\"],\"dcid\":\"Map\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MapCategoryType\",\"types\":[\"Class\"],\"dcid\":\"MapCategoryType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineDenseFogEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineDenseFogEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineHailEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineHailEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineHighWindEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineHighWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineHurricaneTyphoonEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineHurricaneTyphoonEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineLightningEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineLightningEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineStrongWindEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineStrongWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineThunderstormWindEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineThunderstormWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineTropicalDepressionEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineTropicalDepressionEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarineTropicalStormEvent\",\"types\":[\"Class\"],\"dcid\":\"MarineTropicalStormEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MaritalStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"MaritalStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarketingStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"MarketingStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MarryAction\",\"types\":[\"Class\"],\"dcid\":\"MarryAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Mass\",\"types\":[\"Class\"],\"dcid\":\"Mass\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MaternalMortalityEvent\",\"types\":[\"Class\"],\"dcid\":\"MaternalMortalityEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MaturePeptide\",\"types\":[\"Class\"],\"dcid\":\"MaturePeptide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeSHConcept\",\"types\":[\"Class\"],\"dcid\":\"MeSHConcept\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeSHDescriptor\",\"types\":[\"Class\"],\"dcid\":\"MeSHDescriptor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeSHQualifier\",\"types\":[\"Class\"],\"dcid\":\"MeSHQualifier\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeSHRecordType\",\"types\":[\"Class\"],\"dcid\":\"MeSHRecordType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeSHSupplementaryConceptRecord\",\"types\":[\"Class\"],\"dcid\":\"MeSHSupplementaryConceptRecord\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeSHTerm\",\"types\":[\"Class\"],\"dcid\":\"MeSHTerm\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeasurementDenominatorEnum\",\"types\":[\"Class\"],\"dcid\":\"MeasurementDenominatorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeasurementMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"MeasurementMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeasurementQualifierEnum\",\"types\":[\"Class\"],\"dcid\":\"MeasurementQualifierEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MediaObject\",\"types\":[\"Class\"],\"dcid\":\"MediaObject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalClinic\",\"types\":[\"Class\"],\"dcid\":\"MedicalClinic\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalConditionIncident\",\"types\":[\"Class\"],\"dcid\":\"MedicalConditionIncident\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalConditionIncidentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicalConditionIncidentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalEntity\",\"types\":[\"Class\"],\"dcid\":\"MedicalEntity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalEnumeration\",\"types\":[\"Class\"],\"dcid\":\"MedicalEnumeration\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalEventEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicalEventEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalFacility\",\"types\":[\"Class\"],\"dcid\":\"MedicalFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalOrganization\",\"types\":[\"Class\"],\"dcid\":\"MedicalOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalProcedure\",\"types\":[\"Class\"],\"dcid\":\"MedicalProcedure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalSpecializationEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicalSpecializationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalSpecialty\",\"types\":[\"Class\"],\"dcid\":\"MedicalSpecialty\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicalStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalTest\",\"types\":[\"Class\"],\"dcid\":\"MedicalTest\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalTestResultEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicalTestResultEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicalTestingMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicalTestingMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicareEnrollee\",\"types\":[\"Class\"],\"dcid\":\"MedicareEnrollee\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MedicareTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"MedicareTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeetingRoom\",\"types\":[\"Class\"],\"dcid\":\"MeetingRoom\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MendelianInheritanceInManEntity\",\"types\":[\"Class\"],\"dcid\":\"MendelianInheritanceInManEntity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MensClothingStore\",\"types\":[\"Class\"],\"dcid\":\"MensClothingStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MenstrualHygieneStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"MenstrualHygieneStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MenstrualWoman\",\"types\":[\"Class\"],\"dcid\":\"MenstrualWoman\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Menu\",\"types\":[\"Class\"],\"dcid\":\"Menu\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MenuItem\",\"types\":[\"Class\"],\"dcid\":\"MenuItem\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MenuSection\",\"types\":[\"Class\"],\"dcid\":\"MenuSection\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Message\",\"types\":[\"Class\"],\"dcid\":\"Message\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MeteorologicalEvent\",\"types\":[\"Class\"],\"dcid\":\"MeteorologicalEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MethodOfTeachingEnum\",\"types\":[\"Class\"],\"dcid\":\"MethodOfTeachingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MiddleLayerSuperOutputArea\",\"types\":[\"Class\"],\"dcid\":\"MiddleLayerSuperOutputArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MiddleSchool\",\"types\":[\"Class\",\"SchoolLevelEnum\"],\"dcid\":\"MiddleSchool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MilitaryConnectedStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"MilitaryConnectedStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MinorityServingInstitutionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"MinorityServingInstitutionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MobileApplication\",\"types\":[\"Class\"],\"dcid\":\"MobileApplication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MobilePhoneStore\",\"types\":[\"Class\"],\"dcid\":\"MobilePhoneStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MonetaryAmount\",\"types\":[\"Class\"],\"dcid\":\"MonetaryAmount\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MortalityEvent\",\"types\":[\"Class\"],\"dcid\":\"MortalityEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Mosque\",\"types\":[\"Class\"],\"dcid\":\"Mosque\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Motel\",\"types\":[\"Class\"],\"dcid\":\"Motel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Mother\",\"types\":[\"Class\"],\"dcid\":\"Mother\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MotorcycleDealer\",\"types\":[\"Class\"],\"dcid\":\"MotorcycleDealer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MotorcycleRepair\",\"types\":[\"Class\"],\"dcid\":\"MotorcycleRepair\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Mountain\",\"types\":[\"Class\"],\"dcid\":\"Mountain\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MoveAction\",\"types\":[\"Class\"],\"dcid\":\"MoveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Movie\",\"types\":[\"Class\"],\"dcid\":\"Movie\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MovieClip\",\"types\":[\"Class\"],\"dcid\":\"MovieClip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MovieRentalStore\",\"types\":[\"Class\"],\"dcid\":\"MovieRentalStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MovieSeries\",\"types\":[\"Class\"],\"dcid\":\"MovieSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MovieTheater\",\"types\":[\"Class\"],\"dcid\":\"MovieTheater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MovingAverageWindowEnum\",\"types\":[\"Class\"],\"dcid\":\"MovingAverageWindowEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MovingCompany\",\"types\":[\"Class\"],\"dcid\":\"MovingCompany\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Municipality\",\"types\":[\"Class\",\"PlaceTypeEnum\"],\"dcid\":\"Municipality\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Museum\",\"types\":[\"Class\"],\"dcid\":\"Museum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicAlbum\",\"types\":[\"Class\"],\"dcid\":\"MusicAlbum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicAlbumProductionType\",\"types\":[\"Class\"],\"dcid\":\"MusicAlbumProductionType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicAlbumReleaseType\",\"types\":[\"Class\"],\"dcid\":\"MusicAlbumReleaseType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicComposition\",\"types\":[\"Class\"],\"dcid\":\"MusicComposition\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicEvent\",\"types\":[\"Class\"],\"dcid\":\"MusicEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicGroup\",\"types\":[\"Class\"],\"dcid\":\"MusicGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicPlaylist\",\"types\":[\"Class\"],\"dcid\":\"MusicPlaylist\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicRecording\",\"types\":[\"Class\"],\"dcid\":\"MusicRecording\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicRelease\",\"types\":[\"Class\"],\"dcid\":\"MusicRelease\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicReleaseFormatType\",\"types\":[\"Class\"],\"dcid\":\"MusicReleaseFormatType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicStore\",\"types\":[\"Class\"],\"dcid\":\"MusicStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicVenue\",\"types\":[\"Class\"],\"dcid\":\"MusicVenue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"MusicVideoObject\",\"types\":[\"Class\"],\"dcid\":\"MusicVideoObject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NACEEnum\",\"types\":[\"Class\"],\"dcid\":\"NACEEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NAICSEnum\",\"types\":[\"Class\"],\"dcid\":\"NAICSEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NGO\",\"types\":[\"Class\"],\"dcid\":\"NGO\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NOAA_WeatherConditionEnum\",\"types\":[\"Class\"],\"dcid\":\"NOAA_WeatherConditionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NailSalon\",\"types\":[\"Class\"],\"dcid\":\"NailSalon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NationalHouseholdTransportationSurveyEnum\",\"types\":[\"Class\"],\"dcid\":\"NationalHouseholdTransportationSurveyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NationalSchoolLunchProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"NationalSchoolLunchProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NativityEnum\",\"types\":[\"Class\"],\"dcid\":\"NativityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NaturalHazardImpact\",\"types\":[\"Class\"],\"dcid\":\"NaturalHazardImpact\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOV6wAwAAAP//AQAA//8vLhpbUQAAAA==\"}"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
#> [3] "{\"data\":{\"Class\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"NaturalHazardInsurance\",\"types\":[\"Class\"],\"dcid\":\"NaturalHazardInsurance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NaturalHazardSeverityEnum\",\"types\":[\"Class\"],\"dcid\":\"NaturalHazardSeverityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Neighborhood\",\"types\":[\"Class\"],\"dcid\":\"Neighborhood\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NetworkClassEnum\",\"types\":[\"Class\"],\"dcid\":\"NetworkClassEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NetworkSubscriber\",\"types\":[\"Class\"],\"dcid\":\"NetworkSubscriber\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NewsArticle\",\"types\":[\"Class\"],\"dcid\":\"NewsArticle\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NightClub\",\"types\":[\"Class\"],\"dcid\":\"NightClub\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NomenclatureStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"NomenclatureStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NonCodingRNA\",\"types\":[\"Class\"],\"dcid\":\"NonCodingRNA\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NonCodingRNATypeEnum\",\"types\":[\"Class\"],\"dcid\":\"NonCodingRNATypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NonPregnantWoman\",\"types\":[\"Class\"],\"dcid\":\"NonPregnantWoman\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NorovirusGenogroupEnum\",\"types\":[\"Class\"],\"dcid\":\"NorovirusGenogroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NorthernLightsEvent\",\"types\":[\"Class\"],\"dcid\":\"NorthernLightsEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Notary\",\"types\":[\"Class\"],\"dcid\":\"Notary\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NoteDigitalDocument\",\"types\":[\"Class\"],\"dcid\":\"NoteDigitalDocument\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NucleicAcidEnum\",\"types\":[\"Class\"],\"dcid\":\"NucleicAcidEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Nucleotide\",\"types\":[\"Class\"],\"dcid\":\"Nucleotide\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"NutritionInformation\",\"types\":[\"Class\"],\"dcid\":\"NutritionInformation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OI_RaceCodeEnum\",\"types\":[\"Class\"],\"dcid\":\"OI_RaceCodeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Oblast\",\"types\":[\"Class\"],\"dcid\":\"Oblast\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Observation\",\"types\":[\"Class\"],\"dcid\":\"Observation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OccupancyStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"OccupancyStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OccupancyTenureEnum\",\"types\":[\"Class\"],\"dcid\":\"OccupancyTenureEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Occupation\",\"types\":[\"Class\"],\"dcid\":\"Occupation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OccupationCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"OccupationCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OccupationEnum\",\"types\":[\"Class\"],\"dcid\":\"OccupationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OceanBodyOfWater\",\"types\":[\"Class\"],\"dcid\":\"OceanBodyOfWater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OceanicBasin\",\"types\":[\"Class\"],\"dcid\":\"OceanicBasin\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OffenderTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"OffenderTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Offer\",\"types\":[\"Class\"],\"dcid\":\"Offer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OfferCatalog\",\"types\":[\"Class\"],\"dcid\":\"OfferCatalog\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OfferItemCondition\",\"types\":[\"Class\"],\"dcid\":\"OfferItemCondition\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OfficeEquipmentStore\",\"types\":[\"Class\"],\"dcid\":\"OfficeEquipmentStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OnDemandEvent\",\"types\":[\"Class\"],\"dcid\":\"OnDemandEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OpeningHoursSpecification\",\"types\":[\"Class\"],\"dcid\":\"OpeningHoursSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Order\",\"types\":[\"Class\"],\"dcid\":\"Order\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OrderAction\",\"types\":[\"Class\"],\"dcid\":\"OrderAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OrderItem\",\"types\":[\"Class\"],\"dcid\":\"OrderItem\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OrderStatus\",\"types\":[\"Class\"],\"dcid\":\"OrderStatus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OrdinalUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"OrdinalUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Organization\",\"types\":[\"Class\"],\"dcid\":\"Organization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OrganizationRole\",\"types\":[\"Class\"],\"dcid\":\"OrganizationRole\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OrganizeAction\",\"types\":[\"Class\"],\"dcid\":\"OrganizeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OriginBackgroundTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"OriginBackgroundTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OutdoorLivingEnvironmentDeprivation\",\"types\":[\"Class\"],\"dcid\":\"OutdoorLivingEnvironmentDeprivation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OutletStore\",\"types\":[\"Class\"],\"dcid\":\"OutletStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OwnershipInfo\",\"types\":[\"Class\"],\"dcid\":\"OwnershipInfo\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"OwnershipStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"OwnershipStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PGxLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"PGxLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaintAction\",\"types\":[\"Class\"],\"dcid\":\"PaintAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Painting\",\"types\":[\"Class\"],\"dcid\":\"Painting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PandemicEnum\",\"types\":[\"Class\"],\"dcid\":\"PandemicEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ParcelDelivery\",\"types\":[\"Class\"],\"dcid\":\"ParcelDelivery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ParcelService\",\"types\":[\"Class\"],\"dcid\":\"ParcelService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ParentAudience\",\"types\":[\"Class\"],\"dcid\":\"ParentAudience\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Parish\",\"types\":[\"Class\"],\"dcid\":\"Parish\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Park\",\"types\":[\"Class\"],\"dcid\":\"Park\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ParkingFacility\",\"types\":[\"Class\"],\"dcid\":\"ParkingFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PatientTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PatientTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PawnShop\",\"types\":[\"Class\"],\"dcid\":\"PawnShop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PayAction\",\"types\":[\"Class\"],\"dcid\":\"PayAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaymentCard\",\"types\":[\"Class\"],\"dcid\":\"PaymentCard\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaymentChargeSpecification\",\"types\":[\"Class\"],\"dcid\":\"PaymentChargeSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaymentMethod\",\"types\":[\"Class\"],\"dcid\":\"PaymentMethod\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaymentMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"PaymentMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaymentService\",\"types\":[\"Class\"],\"dcid\":\"PaymentService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PaymentStatusType\",\"types\":[\"Class\"],\"dcid\":\"PaymentStatusType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PayrollStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"PayrollStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PeopleAudience\",\"types\":[\"Class\"],\"dcid\":\"PeopleAudience\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PercentileEnum\",\"types\":[\"Class\"],\"dcid\":\"PercentileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PerformAction\",\"types\":[\"Class\"],\"dcid\":\"PerformAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PerformanceLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"PerformanceLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PerformanceRole\",\"types\":[\"Class\"],\"dcid\":\"PerformanceRole\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PerformingArtsTheater\",\"types\":[\"Class\"],\"dcid\":\"PerformingArtsTheater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PerformingGroup\",\"types\":[\"Class\"],\"dcid\":\"PerformingGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Periodical\",\"types\":[\"Class\"],\"dcid\":\"Periodical\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Permit\",\"types\":[\"Class\"],\"dcid\":\"Permit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Person\",\"types\":[\"Class\"],\"dcid\":\"Person\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PetStore\",\"types\":[\"Class\"],\"dcid\":\"PetStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PharmacogeneticAssociationEnum\",\"types\":[\"Class\"],\"dcid\":\"PharmacogeneticAssociationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PharmacotherapyOptionEnum\",\"types\":[\"Class\"],\"dcid\":\"PharmacotherapyOptionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Pharmacy\",\"types\":[\"Class\"],\"dcid\":\"Pharmacy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Photograph\",\"types\":[\"Class\"],\"dcid\":\"Photograph\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PhotographAction\",\"types\":[\"Class\"],\"dcid\":\"PhotographAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PhysicalActivityEffortLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"PhysicalActivityEffortLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PhysicalActivityEnum\",\"types\":[\"Class\"],\"dcid\":\"PhysicalActivityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Physician\",\"types\":[\"Class\"],\"dcid\":\"Physician\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PinCodeArea\",\"types\":[\"Class\"],\"dcid\":\"PinCodeArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Place\",\"types\":[\"Class\"],\"dcid\":\"Place\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlaceOfBirthEnum\",\"types\":[\"Class\"],\"dcid\":\"PlaceOfBirthEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlaceOfWorship\",\"types\":[\"Class\"],\"dcid\":\"PlaceOfWorship\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlaceStatisticalVariable\",\"types\":[\"Class\"],\"dcid\":\"PlaceStatisticalVariable\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlaceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PlaceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlaceVisitEvent\",\"types\":[\"Class\"],\"dcid\":\"PlaceVisitEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlanAction\",\"types\":[\"Class\"],\"dcid\":\"PlanAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlannedParenthoodClinic\",\"types\":[\"Class\"],\"dcid\":\"PlannedParenthoodClinic\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlanningArea\",\"types\":[\"Class\"],\"dcid\":\"PlanningArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PlayAction\",\"types\":[\"Class\"],\"dcid\":\"PlayAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Playground\",\"types\":[\"Class\"],\"dcid\":\"Playground\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Plumber\",\"types\":[\"Class\"],\"dcid\":\"Plumber\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PoliceStation\",\"types\":[\"Class\"],\"dcid\":\"PoliceStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PolicyAdoptedAtEnum\",\"types\":[\"Class\"],\"dcid\":\"PolicyAdoptedAtEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PolicySpatialCoverageEnum\",\"types\":[\"Class\"],\"dcid\":\"PolicySpatialCoverageEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PoliticalCampaignCmte\",\"types\":[\"Class\"],\"dcid\":\"PoliticalCampaignCmte\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PoliticalCampaignCmteDesignationEnum\",\"types\":[\"Class\"],\"dcid\":\"PoliticalCampaignCmteDesignationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PoliticalCampaignCmteTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PoliticalCampaignCmteTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PoliticalParty\",\"types\":[\"Class\"],\"dcid\":\"PoliticalParty\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PollutantHealthRiskEnum\",\"types\":[\"Class\"],\"dcid\":\"PollutantHealthRiskEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Pond\",\"types\":[\"Class\"],\"dcid\":\"Pond\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PopulationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PopulationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PostBirthCareEnum\",\"types\":[\"Class\"],\"dcid\":\"PostBirthCareEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PostOffice\",\"types\":[\"Class\"],\"dcid\":\"PostOffice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PostalAddress\",\"types\":[\"Class\"],\"dcid\":\"PostalAddress\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PostalCodeArea\",\"types\":[\"Class\"],\"dcid\":\"PostalCodeArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PostnatalCareStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"PostnatalCareStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PostpartumFamilyPlanningEnum\",\"types\":[\"Class\"],\"dcid\":\"PostpartumFamilyPlanningEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PowerPlant\",\"types\":[\"Class\"],\"dcid\":\"PowerPlant\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PowerPlantAssociationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"PowerPlantAssociationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PowerPlantSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"PowerPlantSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PowerPlantStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"PowerPlantStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PowerPlantUnit\",\"types\":[\"Class\"],\"dcid\":\"PowerPlantUnit\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PowerProviderCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"PowerProviderCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrecipitationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PrecipitationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrecipitationUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"PrecipitationUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Prefecture\",\"types\":[\"Class\"],\"dcid\":\"Prefecture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PregnancyCareEnum\",\"types\":[\"Class\"],\"dcid\":\"PregnancyCareEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PregnancyHealthPreventionEnum\",\"types\":[\"Class\"],\"dcid\":\"PregnancyHealthPreventionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PregnancyIntentionEnum\",\"types\":[\"Class\"],\"dcid\":\"PregnancyIntentionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PregnantWoman\",\"types\":[\"Class\"],\"dcid\":\"PregnantWoman\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrependAction\",\"types\":[\"Class\"],\"dcid\":\"PrependAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Preschool\",\"types\":[\"Class\"],\"dcid\":\"Preschool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrescribedFireEvent\",\"types\":[\"Class\"],\"dcid\":\"PrescribedFireEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PresentationDigitalDocument\",\"types\":[\"Class\"],\"dcid\":\"PresentationDigitalDocument\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PresidentialElection\",\"types\":[\"Class\"],\"dcid\":\"PresidentialElection\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PressureUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"PressureUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PriceIndexChainingEnum\",\"types\":[\"Class\"],\"dcid\":\"PriceIndexChainingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PriceSpecification\",\"types\":[\"Class\"],\"dcid\":\"PriceSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PricingConstraintTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PricingConstraintTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrimeMoverEnum\",\"types\":[\"Class\"],\"dcid\":\"PrimeMoverEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrisonSentenceStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"PrisonSentenceStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrisonerMeasurementBasisEnum\",\"types\":[\"Class\"],\"dcid\":\"PrisonerMeasurementBasisEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PrivateSchool\",\"types\":[\"Class\",\"SchoolTypeEnum\",\"USC_TypeOfSchoolEnum\"],\"dcid\":\"PrivateSchool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProbabilityDistributionEnum\",\"types\":[\"Class\"],\"dcid\":\"ProbabilityDistributionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProbabilityDistributionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ProbabilityDistributionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProcessingMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"ProcessingMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProcessingStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"ProcessingStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Product\",\"types\":[\"Class\"],\"dcid\":\"Product\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProductEnum\",\"types\":[\"Class\"],\"dcid\":\"ProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProductModel\",\"types\":[\"Class\"],\"dcid\":\"ProductModel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProductStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"ProductStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Production\",\"types\":[\"Class\"],\"dcid\":\"Production\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProfessionalService\",\"types\":[\"Class\"],\"dcid\":\"ProfessionalService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProfilePage\",\"types\":[\"Class\"],\"dcid\":\"ProfilePage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProgramMembership\",\"types\":[\"Class\"],\"dcid\":\"ProgramMembership\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Project\",\"types\":[\"Class\"],\"dcid\":\"Project\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Property\",\"types\":[\"Class\"],\"dcid\":\"Property\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PropertyCrimeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PropertyCrimeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PropertyValue\",\"types\":[\"Class\"],\"dcid\":\"PropertyValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PropertyValueSpecification\",\"types\":[\"Class\"],\"dcid\":\"PropertyValueSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Protein\",\"types\":[\"Class\"],\"dcid\":\"Protein\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProteinExpressionScoreEnum\",\"types\":[\"Class\"],\"dcid\":\"ProteinExpressionScoreEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProteinProteinInteraction\",\"types\":[\"Class\"],\"dcid\":\"ProteinProteinInteraction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProteinTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ProteinTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Provenance\",\"types\":[\"Class\"],\"dcid\":\"Provenance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProvenanceCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"ProvenanceCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Province\",\"types\":[\"Class\"],\"dcid\":\"Province\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ProvisionalNode\",\"types\":[\"Class\"],\"dcid\":\"ProvisionalNode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicInformationCampaign\",\"types\":[\"Class\"],\"dcid\":\"PublicInformationCampaign\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicLocationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PublicLocationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicSchool\",\"types\":[\"Class\",\"SchoolTypeEnum\",\"USC_TypeOfSchoolEnum\"],\"dcid\":\"PublicSchool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicSchoolTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PublicSchoolTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicSwimmingPool\",\"types\":[\"Class\"],\"dcid\":\"PublicSwimmingPool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicUtility\",\"types\":[\"Class\"],\"dcid\":\"PublicUtility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicUtilityTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PublicUtilityTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicationEvent\",\"types\":[\"Class\"],\"dcid\":\"PublicationEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicationIssue\",\"types\":[\"Class\"],\"dcid\":\"PublicationIssue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PublicationVolume\",\"types\":[\"Class\"],\"dcid\":\"PublicationVolume\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"PurchaseTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"PurchaseTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QAPage\",\"types\":[\"Class\"],\"dcid\":\"QAPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QualificationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"QualificationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QualitativeValue\",\"types\":[\"Class\"],\"dcid\":\"QualitativeValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QuantitativeValue\",\"types\":[\"Class\"],\"dcid\":\"QuantitativeValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quantity\",\"types\":[\"Class\"],\"dcid\":\"Quantity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QuantityRange\",\"types\":[\"Class\"],\"dcid\":\"QuantityRange\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Quater\",\"types\":[\"Class\"],\"dcid\":\"Quater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Question\",\"types\":[\"Class\"],\"dcid\":\"Question\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QuintileEnum\",\"types\":[\"Class\"],\"dcid\":\"QuintileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"QuoteAction\",\"types\":[\"Class\"],\"dcid\":\"QuoteAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RVPark\",\"types\":[\"Class\"],\"dcid\":\"RVPark\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RaceCodeEnum\",\"types\":[\"Class\"],\"dcid\":\"RaceCodeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadiationDirectionEnum\",\"types\":[\"Class\"],\"dcid\":\"RadiationDirectionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadiationUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"RadiationUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadiationWavelengthEnum\",\"types\":[\"Class\"],\"dcid\":\"RadiationWavelengthEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadioChannel\",\"types\":[\"Class\"],\"dcid\":\"RadioChannel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadioClip\",\"types\":[\"Class\"],\"dcid\":\"RadioClip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadioEpisode\",\"types\":[\"Class\"],\"dcid\":\"RadioEpisode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadioSeason\",\"types\":[\"Class\"],\"dcid\":\"RadioSeason\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadioSeries\",\"types\":[\"Class\"],\"dcid\":\"RadioSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadioStation\",\"types\":[\"Class\"],\"dcid\":\"RadioStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RadonSubquestionEnum\",\"types\":[\"Class\"],\"dcid\":\"RadonSubquestionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Rainwater\",\"types\":[\"Class\"],\"dcid\":\"Rainwater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Rating\",\"types\":[\"Class\"],\"dcid\":\"Rating\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReactAction\",\"types\":[\"Class\"],\"dcid\":\"ReactAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReadAction\",\"types\":[\"Class\"],\"dcid\":\"ReadAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RealEstateAgent\",\"types\":[\"Class\"],\"dcid\":\"RealEstateAgent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReasonNotUsingInternetAtHomeEnum\",\"types\":[\"Class\"],\"dcid\":\"ReasonNotUsingInternetAtHomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReceiveAction\",\"types\":[\"Class\"],\"dcid\":\"ReceiveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Recipe\",\"types\":[\"Class\"],\"dcid\":\"Recipe\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RecreationalFacility\",\"types\":[\"Class\"],\"dcid\":\"RecreationalFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RecyclingCenter\",\"types\":[\"Class\"],\"dcid\":\"RecyclingCenter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RefSeqCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"RefSeqCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RefSeqStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"RefSeqStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Region\",\"types\":[\"Class\"],\"dcid\":\"Region\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RegisterAction\",\"types\":[\"Class\"],\"dcid\":\"RegisterAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RegistrationAuthorityEnum\",\"types\":[\"Class\"],\"dcid\":\"RegistrationAuthorityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RegistrationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"RegistrationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RegulatoryStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"RegulatoryStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReimbursementObservation\",\"types\":[\"Class\"],\"dcid\":\"ReimbursementObservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RejectAction\",\"types\":[\"Class\"],\"dcid\":\"RejectAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RelationshipAssociationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"RelationshipAssociationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RelationshipEvidenceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"RelationshipEvidenceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReligionEnum\",\"types\":[\"Class\"],\"dcid\":\"ReligionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Remittance\",\"types\":[\"Class\"],\"dcid\":\"Remittance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RemoteInstructionPercentEnum\",\"types\":[\"Class\"],\"dcid\":\"RemoteInstructionPercentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RemoteInstructionTimeEnum\",\"types\":[\"Class\"],\"dcid\":\"RemoteInstructionTimeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RenewableEnergy\",\"types\":[\"Class\",\"EnergySourceEnum\"],\"dcid\":\"RenewableEnergy\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RentAction\",\"types\":[\"Class\"],\"dcid\":\"RentAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RentalCarReservation\",\"types\":[\"Class\"],\"dcid\":\"RentalCarReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReplaceAction\",\"types\":[\"Class\"],\"dcid\":\"ReplaceAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReplyAction\",\"types\":[\"Class\"],\"dcid\":\"ReplyAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Report\",\"types\":[\"Class\"],\"dcid\":\"Report\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReportingDataSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"ReportingDataSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RepresentativeConcentrationPathwayEnum\",\"types\":[\"Class\"],\"dcid\":\"RepresentativeConcentrationPathwayEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Reservation\",\"types\":[\"Class\"],\"dcid\":\"Reservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReservationPackage\",\"types\":[\"Class\"],\"dcid\":\"ReservationPackage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReservationStatusType\",\"types\":[\"Class\"],\"dcid\":\"ReservationStatusType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReserveAction\",\"types\":[\"Class\"],\"dcid\":\"ReserveAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Reservoir\",\"types\":[\"Class\"],\"dcid\":\"Reservoir\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Residence\",\"types\":[\"Class\"],\"dcid\":\"Residence\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ResidenceCharacteristicEnum\",\"types\":[\"Class\"],\"dcid\":\"ResidenceCharacteristicEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ResidenceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ResidenceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ResidentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"ResidentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Resort\",\"types\":[\"Class\"],\"dcid\":\"Resort\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Restaurant\",\"types\":[\"Class\"],\"dcid\":\"Restaurant\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RestraintOrSeclusionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"RestraintOrSeclusionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RestrictedDiet\",\"types\":[\"Class\"],\"dcid\":\"RestrictedDiet\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ResumeAction\",\"types\":[\"Class\"],\"dcid\":\"ResumeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReturnAction\",\"types\":[\"Class\"],\"dcid\":\"ReturnAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RevenueSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"RevenueSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Review\",\"types\":[\"Class\"],\"dcid\":\"Review\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ReviewAction\",\"types\":[\"Class\"],\"dcid\":\"ReviewAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RipCurrentEvent\",\"types\":[\"Class\"],\"dcid\":\"RipCurrentEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RiverBodyOfWater\",\"types\":[\"Class\"],\"dcid\":\"RiverBodyOfWater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RiverineFloodingEvent\",\"types\":[\"Class\"],\"dcid\":\"RiverineFloodingEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RnaTranscript\",\"types\":[\"Class\"],\"dcid\":\"RnaTranscript\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RoadIntersectionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"RoadIntersectionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RoadUserTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"RoadUserTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Role\",\"types\":[\"Class\"],\"dcid\":\"Role\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RoofingContractor\",\"types\":[\"Class\"],\"dcid\":\"RoofingContractor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Room\",\"types\":[\"Class\"],\"dcid\":\"Room\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RsvpAction\",\"types\":[\"Class\"],\"dcid\":\"RsvpAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"RsvpResponseType\",\"types\":[\"Class\"],\"dcid\":\"RsvpResponseType\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel10\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel10\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel11\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel11\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel12\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel12\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel13\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel13\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel14\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel14\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel7\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel7\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel8\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel8\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"S2CellLevel9\",\"types\":[\"Class\"],\"dcid\":\"S2CellLevel9\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SAMHSA_EmploymentEnum\",\"types\":[\"Class\"],\"dcid\":\"SAMHSA_EmploymentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ActivityEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ActivityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_AgeEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_AgeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_BioclimaticBeltEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_BioclimaticBeltEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_CauseOfDeathEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_CauseOfDeathEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_CounterpartEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_CounterpartEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_CustomBreakdownEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_CustomBreakdownEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_DeviationLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_DeviationLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_DisabilityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_DisabilityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_EducationLevEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_EducationLevEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_FiscalInterventionStageEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_FiscalInterventionStageEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_FoodWasteSectorEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_FoodWasteSectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_FrequencyOfChlorophyllAConcentrationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_FrequencyOfChlorophyllAConcentrationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_GeoInfoTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_GeoInfoTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_GovernmentNameEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_GovernmentNameEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_GroundsOfDiscriminationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_GroundsOfDiscriminationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_HazardTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_HazardTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_IhrCapacityEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_IhrCapacityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_IllicitFinancialFlowsEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_IllicitFinancialFlowsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_IncomeWealthQuantileEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_IncomeWealthQuantileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_InternationalOrganizationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_InternationalOrganizationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_LandCoverEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_LandCoverEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_LevelOfGovernmentEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_LevelOfGovernmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_LevelOfRequirementEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_LevelOfRequirementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_LevelStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_LevelStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ManagementLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ManagementLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_MarineSpatatialPlanEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_MarineSpatatialPlanEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_MarineSpatialPlanningMspEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_MarineSpatialPlanningMspEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_MeasurementMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_MeasurementMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_MigratoryStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_MigratoryStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ModeOfTransportationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ModeOfTransportationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_MountainElevationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_MountainElevationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_NameOfInternationalAgreementEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_NameOfInternationalAgreementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_NameOfInternationalInstitutionEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_NameOfInternationalInstitutionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_NameOfNonCommunicableDiseaseEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_NameOfNonCommunicableDiseaseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_NutrientLoadingEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_NutrientLoadingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_OccupationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_OccupationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ParliamentaryCommitteesEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ParliamentaryCommitteesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_PolicyDomainsEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_PolicyDomainsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_PolicyInstrumentsEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_PolicyInstrumentsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_PopulationGroupEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_PopulationGroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ProductEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ReportOrdinalEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ReportOrdinalEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_Series\",\"types\":[\"Class\"],\"dcid\":\"SDG_Series\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_ServiceAttributeEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_ServiceAttributeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_SeverityOfPriceLevelsEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_SeverityOfPriceLevelsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_SexEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_SexEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_SourceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_SourceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_SubstanceEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_SubstanceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_SubstanceUseDisordersEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_SubstanceUseDisordersEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TariffRegimeStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TariffRegimeStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfFacilitiesEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfFacilitiesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfMobileTechnologyEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfMobileTechnologyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfOfdiSchemeEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfOfdiSchemeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfRenewableTechnologyEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfRenewableTechnologyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfSkillEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfSkillEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfSpeedEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfSpeedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfSupportEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfSupportEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_TypeOfWasteTreatmentEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_TypeOfWasteTreatmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_UnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"SDG_UnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_UrbanisationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_UrbanisationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SDG_UrbanizationEnum\",\"types\":[\"Class\"],\"dcid\":\"SDG_UrbanizationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SICEnum\",\"types\":[\"Class\"],\"dcid\":\"SICEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SOCv2018Enum\",\"types\":[\"Class\"],\"dcid\":\"SOCv2018Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SaleEvent\",\"types\":[\"Class\"],\"dcid\":\"SaleEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sales\",\"types\":[\"Class\",\"EconomicActivitySourceEnum\"],\"dcid\":\"Sales\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SamplingStation\",\"types\":[\"Class\"],\"dcid\":\"SamplingStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SapovirusGenogroupEnum\",\"types\":[\"Class\"],\"dcid\":\"SapovirusGenogroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SatelliteImage\",\"types\":[\"Class\"],\"dcid\":\"SatelliteImage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SatisfactionWithAssistiveProductsAndRelatedServiceEnum\",\"types\":[\"Class\"],\"dcid\":\"SatisfactionWithAssistiveProductsAndRelatedServiceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SatisfactionWithAssistiveProductsForDifferentEnvironmentsAndActivitieEnum\",\"types\":[\"Class\"],\"dcid\":\"SatisfactionWithAssistiveProductsForDifferentEnvironmentsAndActivitieEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ScheduleAction\",\"types\":[\"Class\"],\"dcid\":\"ScheduleAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ScholarlyArticle\",\"types\":[\"Class\"],\"dcid\":\"ScholarlyArticle\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"School\",\"types\":[\"Class\"],\"dcid\":\"School\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SchoolDistrict\",\"types\":[\"Class\"],\"dcid\":\"SchoolDistrict\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SchoolGradeLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"SchoolGradeLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SchoolLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"SchoolLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SchoolManagementEnum\",\"types\":[\"Class\"],\"dcid\":\"SchoolManagementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SchoolSubjectEnum\",\"types\":[\"Class\"],\"dcid\":\"SchoolSubjectEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SchoolTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SchoolTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ScreeningEvent\",\"types\":[\"Class\"],\"dcid\":\"ScreeningEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sculpture\",\"types\":[\"Class\"],\"dcid\":\"Sculpture\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SeaBodyOfWater\",\"types\":[\"Class\"],\"dcid\":\"SeaBodyOfWater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SeaIce\",\"types\":[\"Class\"],\"dcid\":\"SeaIce\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SearchAction\",\"types\":[\"Class\"],\"dcid\":\"SearchAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SearchResultsPage\",\"types\":[\"Class\"],\"dcid\":\"SearchResultsPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Season\",\"types\":[\"Class\"],\"dcid\":\"Season\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SeasonalAdjustmentEnum\",\"types\":[\"Class\"],\"dcid\":\"SeasonalAdjustmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Seat\",\"types\":[\"Class\"],\"dcid\":\"Seat\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Sector\",\"types\":[\"Class\"],\"dcid\":\"Sector\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SeicheEvent\",\"types\":[\"Class\"],\"dcid\":\"SeicheEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SelfStorage\",\"types\":[\"Class\"],\"dcid\":\"SelfStorage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SellAction\",\"types\":[\"Class\"],\"dcid\":\"SellAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SendAction\",\"types\":[\"Class\"],\"dcid\":\"SendAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SequenceOntologySubsetEnum\",\"types\":[\"Class\"],\"dcid\":\"SequenceOntologySubsetEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SequenceOntologyTerm\",\"types\":[\"Class\"],\"dcid\":\"SequenceOntologyTerm\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SequenceOntologyTermSynonym\",\"types\":[\"Class\"],\"dcid\":\"SequenceOntologyTermSynonym\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Series\",\"types\":[\"Class\"],\"dcid\":\"Series\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SerogroupEnum\",\"types\":[\"Class\"],\"dcid\":\"SerogroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SerotypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SerotypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Service\",\"types\":[\"Class\"],\"dcid\":\"Service\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ServiceCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"ServiceCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ServiceChannel\",\"types\":[\"Class\"],\"dcid\":\"ServiceChannel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ServiceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ServiceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SeverityEnum\",\"types\":[\"Class\"],\"dcid\":\"SeverityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SexualOrientationEnum\",\"types\":[\"Class\"],\"dcid\":\"SexualOrientationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ShareAction\",\"types\":[\"Class\"],\"dcid\":\"ShareAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SharedSocioeconomicPathwayEnum\",\"types\":[\"Class\"],\"dcid\":\"SharedSocioeconomicPathwayEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ShoeStore\",\"types\":[\"Class\"],\"dcid\":\"ShoeStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ShoppingCenter\",\"types\":[\"Class\"],\"dcid\":\"ShoppingCenter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SingleFamilyResidence\",\"types\":[\"Class\"],\"dcid\":\"SingleFamilyResidence\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SiteNavigationElement\",\"types\":[\"Class\"],\"dcid\":\"SiteNavigationElement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SkiResort\",\"types\":[\"Class\"],\"dcid\":\"SkiResort\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SleepPracticeEnum\",\"types\":[\"Class\"],\"dcid\":\"SleepPracticeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SleetEvent\",\"types\":[\"Class\"],\"dcid\":\"SleetEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SneakerwaveEvent\",\"types\":[\"Class\"],\"dcid\":\"SneakerwaveEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialAssociation\",\"types\":[\"Class\"],\"dcid\":\"SocialAssociation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"SocialCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialConditionEnum\",\"types\":[\"Class\"],\"dcid\":\"SocialConditionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialEvent\",\"types\":[\"Class\"],\"dcid\":\"SocialEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialMediaPosting\",\"types\":[\"Class\"],\"dcid\":\"SocialMediaPosting\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialSupportBeneficiaryTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SocialSupportBeneficiaryTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialSupportLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"SocialSupportLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialSupportTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SocialSupportTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SocialVulnerabilityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"SocialVulnerabilityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SoftwareApplication\",\"types\":[\"Class\"],\"dcid\":\"SoftwareApplication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SoftwareSourceCode\",\"types\":[\"Class\"],\"dcid\":\"SoftwareSourceCode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SoilTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SoilTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SolarArray\",\"types\":[\"Class\"],\"dcid\":\"SolarArray\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SolarInstallation\",\"types\":[\"Class\"],\"dcid\":\"SolarInstallation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SolarPanel\",\"types\":[\"Class\"],\"dcid\":\"SolarPanel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SolarThermalInstallation\",\"types\":[\"Class\"],\"dcid\":\"SolarThermalInstallation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SomeProducts\",\"types\":[\"Class\"],\"dcid\":\"SomeProducts\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Source\",\"types\":[\"Class\"],\"dcid\":\"Source\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SourceEditionEnum\",\"types\":[\"Class\"],\"dcid\":\"SourceEditionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SourceStatVarInfo\",\"types\":[\"Class\"],\"dcid\":\"SourceStatVarInfo\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SourcesOfAssistiveProductEnum\",\"types\":[\"Class\"],\"dcid\":\"SourcesOfAssistiveProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SpecialAdministrativeRegion\",\"types\":[\"Class\"],\"dcid\":\"SpecialAdministrativeRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Specialty\",\"types\":[\"Class\"],\"dcid\":\"Specialty\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Species\",\"types\":[\"Class\"],\"dcid\":\"Species\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SpeedUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"SpeedUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SportingGoodsStore\",\"types\":[\"Class\"],\"dcid\":\"SportingGoodsStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SportsActivityLocation\",\"types\":[\"Class\"],\"dcid\":\"SportsActivityLocation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SportsClub\",\"types\":[\"Class\"],\"dcid\":\"SportsClub\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SportsEvent\",\"types\":[\"Class\"],\"dcid\":\"SportsEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SportsOrganization\",\"types\":[\"Class\"],\"dcid\":\"SportsOrganization\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SportsTeam\",\"types\":[\"Class\"],\"dcid\":\"SportsTeam\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SpreadsheetDigitalDocument\",\"types\":[\"Class\"],\"dcid\":\"SpreadsheetDigitalDocument\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StadiumOrArena\",\"types\":[\"Class\"],\"dcid\":\"StadiumOrArena\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StandardOfCareEnum\",\"types\":[\"Class\"],\"dcid\":\"StandardOfCareEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StartupEnergySourceEnum\",\"types\":[\"Class\"],\"dcid\":\"StartupEnergySourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatAccumulationPeriodEnum\",\"types\":[\"Class\"],\"dcid\":\"StatAccumulationPeriodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatVarGroup\",\"types\":[\"Class\"],\"dcid\":\"StatVarGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatVarGroupSpec\",\"types\":[\"Class\"],\"dcid\":\"StatVarGroupSpec\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatVarObsSeries\",\"types\":[\"Class\"],\"dcid\":\"StatVarObsSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatVarObservation\",\"types\":[\"Class\"],\"dcid\":\"StatVarObservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatVarPeerGroup\",\"types\":[\"Class\"],\"dcid\":\"StatVarPeerGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"State\",\"types\":[\"Class\"],\"dcid\":\"State\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StateComponent\",\"types\":[\"Class\"],\"dcid\":\"StateComponent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"StatisticSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalAggregation\",\"types\":[\"Class\"],\"dcid\":\"StatisticalAggregation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalAggregationMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"StatisticalAggregationMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalArea\",\"types\":[\"Class\"],\"dcid\":\"StatisticalArea\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalCalculation\",\"types\":[\"Class\"],\"dcid\":\"StatisticalCalculation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalInferenceMethodEnum\",\"types\":[\"Class\"],\"dcid\":\"StatisticalInferenceMethodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalPopulation\",\"types\":[\"Class\"],\"dcid\":\"StatisticalPopulation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalRegion\",\"types\":[\"Class\"],\"dcid\":\"StatisticalRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalVariable\",\"types\":[\"Class\"],\"dcid\":\"StatisticalVariable\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StatisticalVariableSlice\",\"types\":[\"Class\"],\"dcid\":\"StatisticalVariableSlice\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SteeringPositionValue\",\"types\":[\"Class\"],\"dcid\":\"SteeringPositionValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Stock\",\"types\":[\"Class\"],\"dcid\":\"Stock\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Store\",\"types\":[\"Class\"],\"dcid\":\"Store\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StormEpisode\",\"types\":[\"Class\"],\"dcid\":\"StormEpisode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StormEvent\",\"types\":[\"Class\"],\"dcid\":\"StormEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StormSurgeTideEvent\",\"types\":[\"Class\"],\"dcid\":\"StormSurgeTideEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StrandOrientationEnum\",\"types\":[\"Class\"],\"dcid\":\"StrandOrientationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StrongWindEvent\",\"types\":[\"Class\"],\"dcid\":\"StrongWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StructuredValue\",\"types\":[\"Class\"],\"dcid\":\"StructuredValue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Student\",\"types\":[\"Class\"],\"dcid\":\"Student\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StudentAvailabilityModeEnum\",\"types\":[\"Class\"],\"dcid\":\"StudentAvailabilityModeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StudentCohortMembershipEnum\",\"types\":[\"Class\"],\"dcid\":\"StudentCohortMembershipEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StudentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"StudentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"StudentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"StudentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubRegion\",\"types\":[\"Class\"],\"dcid\":\"SubRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubjectAssessmentScaleEnum\",\"types\":[\"Class\"],\"dcid\":\"SubjectAssessmentScaleEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubjectTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubjectTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubscribeAction\",\"types\":[\"Class\"],\"dcid\":\"SubscribeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Substance\",\"types\":[\"Class\"],\"dcid\":\"Substance\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceAbuseAwarenessActivityTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceAbuseAwarenessActivityTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceAbuseConsequenceEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceAbuseConsequenceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceAbuseCoordinatingEntityEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceAbuseCoordinatingEntityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceAbusePolicyFrameworkEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceAbusePolicyFrameworkEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceAbuseReductionMeasureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceAbuseReductionMeasureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceAbuseSocialCostTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceAbuseSocialCostTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderGovernmentBenefitEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderGovernmentBenefitEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderMonitoringSystemEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderMonitoringSystemEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderOpenAccessServiceEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderOpenAccessServiceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderPreventionProgrammesEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderPreventionProgrammesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderResourceGroupEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderResourceGroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderResourceRepresentativeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderResourceRepresentativeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderTreatmentAccessRestrictionsEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderTreatmentAccessRestrictionsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubstanceUseDisorderTreatmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SubstanceUseDisorderTreatmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SubwayStation\",\"types\":[\"Class\"],\"dcid\":\"SubwayStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Suite\",\"types\":[\"Class\"],\"dcid\":\"Suite\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SunbedAccessRestrictionEnum\",\"types\":[\"Class\"],\"dcid\":\"SunbedAccessRestrictionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SunbedComplianceMeasureEnum\",\"types\":[\"Class\"],\"dcid\":\"SunbedComplianceMeasureEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SunbedFacilitySafetyRequirementEnum\",\"types\":[\"Class\"],\"dcid\":\"SunbedFacilitySafetyRequirementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SunbedFacilityStaffTrainingRequirementEnum\",\"types\":[\"Class\"],\"dcid\":\"SunbedFacilityStaffTrainingRequirementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SunbedPublicInformationRequirementEnum\",\"types\":[\"Class\"],\"dcid\":\"SunbedPublicInformationRequirementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SuperfundFundingStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"SuperfundFundingStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SuperfundMeasurementSite\",\"types\":[\"Class\"],\"dcid\":\"SuperfundMeasurementSite\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SuperfundSite\",\"types\":[\"Class\"],\"dcid\":\"SuperfundSite\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Supermarket\",\"types\":[\"Class\"],\"dcid\":\"Supermarket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SuspendAction\",\"types\":[\"Class\"],\"dcid\":\"SuspendAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SustainableDevelopmentGoals\",\"types\":[\"Class\"],\"dcid\":\"SustainableDevelopmentGoals\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Synagogue\",\"types\":[\"Class\"],\"dcid\":\"Synagogue\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"SynonymTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"SynonymTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TVClip\",\"types\":[\"Class\"],\"dcid\":\"TVClip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TVEpisode\",\"types\":[\"Class\"],\"dcid\":\"TVEpisode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TVSeason\",\"types\":[\"Class\"],\"dcid\":\"TVSeason\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TVSeries\",\"types\":[\"Class\"],\"dcid\":\"TVSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Table\",\"types\":[\"Class\"],\"dcid\":\"Table\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TakeAction\",\"types\":[\"Class\"],\"dcid\":\"TakeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TattooParlor\",\"types\":[\"Class\"],\"dcid\":\"TattooParlor\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TaxStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"TaxStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Taxi\",\"types\":[\"Class\"],\"dcid\":\"Taxi\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TaxiReservation\",\"types\":[\"Class\"],\"dcid\":\"TaxiReservation\",\"provenanceId\":\"dc/base/Schema\"}]}}}},\"nextToken\":\"H4sIAAAAAAAA/+Ly5/IoLkjMy0st0i0oys9KTS4p1k9JLEnOz9UtLskvStXPzCsuScxLTi3WT0nWTS9KLMgAKUwBKUpMSiwGi8eDxaWYOe5wAwAAAP//AQAA///zkYbpUQAAAA==\"}"
#> [4] "{\"data\":{\"Class\":{\"arcs\":{\"typeOf\":{\"nodes\":[{\"name\":\"TaxiService\",\"types\":[\"Class\"],\"dcid\":\"TaxiService\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TaxiStand\",\"types\":[\"Class\"],\"dcid\":\"TaxiStand\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Taxon\",\"types\":[\"Class\"],\"dcid\":\"Taxon\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TaxonTopLevelCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"TaxonTopLevelCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TeacherInstructionModeEnum\",\"types\":[\"Class\"],\"dcid\":\"TeacherInstructionModeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TeachingExperienceLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"TeachingExperienceLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TechArticle\",\"types\":[\"Class\"],\"dcid\":\"TechArticle\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TelevisionChannel\",\"types\":[\"Class\"],\"dcid\":\"TelevisionChannel\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TelevisionStation\",\"types\":[\"Class\"],\"dcid\":\"TelevisionStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TemperatureEvent\",\"types\":[\"Class\"],\"dcid\":\"TemperatureEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TemperatureUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"TemperatureUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TennisComplex\",\"types\":[\"Class\"],\"dcid\":\"TennisComplex\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TenureStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"TenureStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TextDigitalDocument\",\"types\":[\"Class\"],\"dcid\":\"TextDigitalDocument\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TheaterEvent\",\"types\":[\"Class\"],\"dcid\":\"TheaterEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TheaterGroup\",\"types\":[\"Class\"],\"dcid\":\"TheaterGroup\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TherapeuticEquivalenceCodeEnum\",\"types\":[\"Class\"],\"dcid\":\"TherapeuticEquivalenceCodeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Thing\",\"types\":[\"Class\"],\"dcid\":\"Thing\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ThunderstormWindEvent\",\"types\":[\"Class\"],\"dcid\":\"ThunderstormWindEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Ticket\",\"types\":[\"Class\"],\"dcid\":\"Ticket\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TideGaugeStation\",\"types\":[\"Class\"],\"dcid\":\"TideGaugeStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TieAction\",\"types\":[\"Class\"],\"dcid\":\"TieAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TimePeriodEnum\",\"types\":[\"Class\"],\"dcid\":\"TimePeriodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TimePeriodRelativeToPregnancyEnum\",\"types\":[\"Class\"],\"dcid\":\"TimePeriodRelativeToPregnancyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TimeSeriesAdjustmentEnum\",\"types\":[\"Class\"],\"dcid\":\"TimeSeriesAdjustmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TimeUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"TimeUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TipAction\",\"types\":[\"Class\"],\"dcid\":\"TipAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TireShop\",\"types\":[\"Class\"],\"dcid\":\"TireShop\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TitleISchoolStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"TitleISchoolStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TobaccoUsageTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"TobaccoUsageTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Topic\",\"types\":[\"Class\"],\"dcid\":\"Topic\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ToppingOrBottomingEnum\",\"types\":[\"Class\"],\"dcid\":\"ToppingOrBottomingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TornadoEvent\",\"types\":[\"Class\"],\"dcid\":\"TornadoEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TornadoIntensityEnum\",\"types\":[\"Class\"],\"dcid\":\"TornadoIntensityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TouristAttraction\",\"types\":[\"Class\"],\"dcid\":\"TouristAttraction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TouristInformationCenter\",\"types\":[\"Class\"],\"dcid\":\"TouristInformationCenter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Town\",\"types\":[\"Class\",\"LocationClassificationEnum\"],\"dcid\":\"Town\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ToyStore\",\"types\":[\"Class\"],\"dcid\":\"ToyStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TrackAction\",\"types\":[\"Class\"],\"dcid\":\"TrackAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TradeAction\",\"types\":[\"Class\"],\"dcid\":\"TradeAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TrainReservation\",\"types\":[\"Class\"],\"dcid\":\"TrainReservation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TrainStation\",\"types\":[\"Class\"],\"dcid\":\"TrainStation\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TrainTrip\",\"types\":[\"Class\"],\"dcid\":\"TrainTrip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransactionCauseEnum\",\"types\":[\"Class\"],\"dcid\":\"TransactionCauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransactionStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"TransactionStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransferAction\",\"types\":[\"Class\"],\"dcid\":\"TransferAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransferTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"TransferTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransmissionModeEnum\",\"types\":[\"Class\"],\"dcid\":\"TransmissionModeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransportHub\",\"types\":[\"Class\"],\"dcid\":\"TransportHub\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransportOrAdminFacility\",\"types\":[\"Class\"],\"dcid\":\"TransportOrAdminFacility\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransportationFacilityEnum\",\"types\":[\"Class\"],\"dcid\":\"TransportationFacilityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TransportationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"TransportationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TravelAction\",\"types\":[\"Class\"],\"dcid\":\"TravelAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TravelAgency\",\"types\":[\"Class\"],\"dcid\":\"TravelAgency\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TravelDistanceToObtainAssistiveProductEnum\",\"types\":[\"Class\"],\"dcid\":\"TravelDistanceToObtainAssistiveProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreasuryBill\",\"types\":[\"Class\"],\"dcid\":\"TreasuryBill\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreasuryBond\",\"types\":[\"Class\"],\"dcid\":\"TreasuryBond\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreasuryNote\",\"types\":[\"Class\"],\"dcid\":\"TreasuryNote\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreasurySecurity\",\"types\":[\"Class\"],\"dcid\":\"TreasurySecurity\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreatmentLocationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"TreatmentLocationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreatmentOutcomeEnum\",\"types\":[\"Class\"],\"dcid\":\"TreatmentOutcomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TreatmentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"TreatmentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Trip\",\"types\":[\"Class\"],\"dcid\":\"Trip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TropicalDepressionEvent\",\"types\":[\"Class\"],\"dcid\":\"TropicalDepressionEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TropicalStormEvent\",\"types\":[\"Class\"],\"dcid\":\"TropicalStormEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TsunamiEvent\",\"types\":[\"Class\"],\"dcid\":\"TsunamiEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TurnoverIndexEnum\",\"types\":[\"Class\"],\"dcid\":\"TurnoverIndexEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TypeAndQuantityNode\",\"types\":[\"Class\"],\"dcid\":\"TypeAndQuantityNode\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TypeOfGeneEnum\",\"types\":[\"Class\"],\"dcid\":\"TypeOfGeneEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TypeOfPowerPlantUnitOwnershipEnum\",\"types\":[\"Class\"],\"dcid\":\"TypeOfPowerPlantUnitOwnershipEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"TypeOfSaltUsedEnum\",\"types\":[\"Class\"],\"dcid\":\"TypeOfSaltUsedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UDISEBlock\",\"types\":[\"Class\"],\"dcid\":\"UDISEBlock\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UDISEDistrict\",\"types\":[\"Class\"],\"dcid\":\"UDISEDistrict\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UNGeoRegion\",\"types\":[\"Class\"],\"dcid\":\"UNGeoRegion\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"URL\",\"types\":[\"Class\"],\"dcid\":\"URL\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USAdoptedNameStem\",\"types\":[\"Class\"],\"dcid\":\"USAdoptedNameStem\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USCEstablishment\",\"types\":[\"Class\"],\"dcid\":\"USCEstablishment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USCFirm\",\"types\":[\"Class\"],\"dcid\":\"USCFirm\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USCWorker\",\"types\":[\"Class\"],\"dcid\":\"USCWorker\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_AbilityToSpeakEnglishEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_AbilityToSpeakEnglishEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_ArmedForcesStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_ArmedForcesStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_CashRentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_CashRentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_CollegeOrGraduateSchoolEnrollmentEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_CollegeOrGraduateSchoolEnrollmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_CommuteModeEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_CommuteModeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_DetailedLevelOfSchoolEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_DetailedLevelOfSchoolEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_DisabilityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_DisabilityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_EducationalAttainmentEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_EducationalAttainmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_FacilitiesEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_FacilitiesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_HasComputerEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_HasComputerEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_HealthInsuranceEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_HealthInsuranceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_HousingStructureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_HousingStructureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_InstitutionalizationEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_InstitutionalizationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_InternetAccessStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_InternetAccessStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_InternetSubscriptionTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_InternetSubscriptionTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_LanguageSpokenAtHomeEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_LanguageSpokenAtHomeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_LevelOfSchoolEnrollmentEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_LevelOfSchoolEnrollmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_LevelOfSchoolEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_LevelOfSchoolEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_MaritalStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_MaritalStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_MortgageStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_MortgageStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_OwnerGenderEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_OwnerGenderEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_PeriodOfMilitaryServiceEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_PeriodOfMilitaryServiceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_PlaceOfBirthEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_PlaceOfBirthEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_PlaceOfWorkEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_PlaceOfWorkEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_PovertyStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_PovertyStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_ResidenceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_ResidenceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_ResidentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_ResidentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_SchoolEnrollmentEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_SchoolEnrollmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_SpouseAbsentReasonEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_SpouseAbsentReasonEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_SpousePresentEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_SpousePresentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_TypeOfSchoolEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_TypeOfSchoolEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_WorkExperienceEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_WorkExperienceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USC_WorkStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"USC_WorkStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USLocalitiesEnum\",\"types\":[\"Class\"],\"dcid\":\"USLocalitiesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"USMetropolitanDivision\",\"types\":[\"Class\"],\"dcid\":\"USMetropolitanDivision\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"US_PartyAffiliationEnum\",\"types\":[\"Class\"],\"dcid\":\"US_PartyAffiliationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"US_UrbanDisabilityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"US_UrbanDisabilityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UmlsConceptUniqueIdentifier\",\"types\":[\"Class\"],\"dcid\":\"UmlsConceptUniqueIdentifier\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnRegisterAction\",\"types\":[\"Class\"],\"dcid\":\"UnRegisterAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UncertaintyIntervalEnum\",\"types\":[\"Class\"],\"dcid\":\"UncertaintyIntervalEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnemploymentInsuranceClaim\",\"types\":[\"Class\"],\"dcid\":\"UnemploymentInsuranceClaim\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnemploymentInsuranceClaimTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"UnemploymentInsuranceClaimTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnemploymentInsuranceMeasurementEnum\",\"types\":[\"Class\"],\"dcid\":\"UnemploymentInsuranceMeasurementEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnemploymentInsuranceProgramEnum\",\"types\":[\"Class\"],\"dcid\":\"UnemploymentInsuranceProgramEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnemploymentInsuranceStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"UnemploymentInsuranceStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"UnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UnitPriceSpecification\",\"types\":[\"Class\"],\"dcid\":\"UnitPriceSpecification\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UpdateAction\",\"types\":[\"Class\"],\"dcid\":\"UpdateAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UrbanConsumer\",\"types\":[\"Class\"],\"dcid\":\"UrbanConsumer\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UrbanOrgSchool\",\"types\":[\"Class\"],\"dcid\":\"UrbanOrgSchool\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UrbanWageEarnerAndClericalWorker\",\"types\":[\"Class\"],\"dcid\":\"UrbanWageEarnerAndClericalWorker\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UsageFrequencyEnum\",\"types\":[\"Class\"],\"dcid\":\"UsageFrequencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UsageOccurrenceEnum\",\"types\":[\"Class\"],\"dcid\":\"UsageOccurrenceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UseAction\",\"types\":[\"Class\"],\"dcid\":\"UseAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserBlocks\",\"types\":[\"Class\"],\"dcid\":\"UserBlocks\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserCheckins\",\"types\":[\"Class\"],\"dcid\":\"UserCheckins\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserComments\",\"types\":[\"Class\"],\"dcid\":\"UserComments\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserDownloads\",\"types\":[\"Class\"],\"dcid\":\"UserDownloads\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserInteraction\",\"types\":[\"Class\"],\"dcid\":\"UserInteraction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserLikes\",\"types\":[\"Class\"],\"dcid\":\"UserLikes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserPageVisits\",\"types\":[\"Class\"],\"dcid\":\"UserPageVisits\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserPlays\",\"types\":[\"Class\"],\"dcid\":\"UserPlays\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserPlusOnes\",\"types\":[\"Class\"],\"dcid\":\"UserPlusOnes\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"UserTweets\",\"types\":[\"Class\"],\"dcid\":\"UserTweets\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Vaccine\",\"types\":[\"Class\"],\"dcid\":\"Vaccine\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VaccineDoseReceivedEnum\",\"types\":[\"Class\"],\"dcid\":\"VaccineDoseReceivedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VaccineInformationEnum\",\"types\":[\"Class\"],\"dcid\":\"VaccineInformationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VaccineStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"VaccineStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VaccineTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VaccineTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VariableCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"VariableCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VariantAlleleOriginEnum\",\"types\":[\"Class\"],\"dcid\":\"VariantAlleleOriginEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VariantSuspectReasonCodesEnum\",\"types\":[\"Class\"],\"dcid\":\"VariantSuspectReasonCodesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VariationTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VariationTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Vehicle\",\"types\":[\"Class\"],\"dcid\":\"Vehicle\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleCrashIncident\",\"types\":[\"Class\"],\"dcid\":\"VehicleCrashIncident\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleDriverTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VehicleDriverTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleFeatureTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VehicleFeatureTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleOccupantTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VehicleOccupantTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleRegistrationStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"VehicleRegistrationStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"VehicleStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VehicleTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VehicleTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VeteranStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"VeteranStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VictimTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VictimTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VideoGallery\",\"types\":[\"Class\"],\"dcid\":\"VideoGallery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VideoGame\",\"types\":[\"Class\"],\"dcid\":\"VideoGame\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VideoGameClip\",\"types\":[\"Class\"],\"dcid\":\"VideoGameClip\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VideoGameSeries\",\"types\":[\"Class\"],\"dcid\":\"VideoGameSeries\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VideoObject\",\"types\":[\"Class\"],\"dcid\":\"VideoObject\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ViewAction\",\"types\":[\"Class\"],\"dcid\":\"ViewAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Village\",\"types\":[\"Class\"],\"dcid\":\"Village\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"ViolentCrimeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"ViolentCrimeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Virus\",\"types\":[\"Class\"],\"dcid\":\"Virus\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusClassEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusClassEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusFamilyEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusFamilyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusGenomeCompositionEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusGenomeCompositionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusGenomeSegment\",\"types\":[\"Class\"],\"dcid\":\"VirusGenomeSegment\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusGenusEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusGenusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusHostEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusHostEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusIsolate\",\"types\":[\"Class\"],\"dcid\":\"VirusIsolate\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusKingdomEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusKingdomEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusLastTaxonomicChangeEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusLastTaxonomicChangeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusOrderEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusOrderEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusPhylumEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusPhylumEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusRealmEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusRealmEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSourceEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSubclassEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSubclassEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSubfamilyEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSubfamilyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSubgenusEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSubgenusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSubkingdomEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSubkingdomEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSuborderEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSuborderEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSubphylumEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSubphylumEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VirusSubrealmEnum\",\"types\":[\"Class\"],\"dcid\":\"VirusSubrealmEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VisualArtsEvent\",\"types\":[\"Class\"],\"dcid\":\"VisualArtsEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VisualArtwork\",\"types\":[\"Class\"],\"dcid\":\"VisualArtwork\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VitaminTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"VitaminTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VolcanicActivityEvent\",\"types\":[\"Class\"],\"dcid\":\"VolcanicActivityEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VolcanicAshEvent\",\"types\":[\"Class\"],\"dcid\":\"VolcanicAshEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VolcanicAshfallEvent\",\"types\":[\"Class\"],\"dcid\":\"VolcanicAshfallEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Volcano\",\"types\":[\"Class\"],\"dcid\":\"Volcano\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Volt\",\"types\":[\"Class\"],\"dcid\":\"Volt\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VolumeUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"VolumeUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VoteAction\",\"types\":[\"Class\"],\"dcid\":\"VoteAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VoterStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"VoterStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"VulnerabilityStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"VulnerabilityStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AdvertisingtypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AdvertisingtypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AgeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AgeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AlcoholtypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AlcoholtypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AmrglasscategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AmrglasscategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ArchiveEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ArchiveEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechbarrierEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechbarrierEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechfundingEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechfundingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechproductEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechproductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechsatiactivityEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechsatiactivityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechsatiserviceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechsatiserviceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechsourceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechsourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AssistivetechtraveldistanceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AssistivetechtraveldistanceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_AwarenessactivitytypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_AwarenessactivitytypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_BacgroupEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_BacgroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_BeverageEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_BeverageEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_BeveragetypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_BeveragetypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_CarepatientEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_CarepatientEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_CaresectorEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_CaresectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ChildcauseEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ChildcauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ClinicalsupervisionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ClinicalsupervisionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_CommunityactiontypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_CommunityactiontypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ConsumptiontypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ConsumptiontypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_CoordinatingentitiesEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_CoordinatingentitiesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DatanatureEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DatanatureEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DatasourceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DatasourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DonortypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DonortypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DrinkdrivingdefinitiontypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DrinkdrivingdefinitiontypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DrivertypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DrivertypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DrivingtesttypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DrivingtesttypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DrugEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DrugEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DrugprescriptionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DrugprescriptionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_DrugsupervisionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_DrugsupervisionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EducationalAttainmentEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EducationalAttainmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EducationlevelEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EducationlevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EmfbodypartEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EmfbodypartEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EmfexposedEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EmfexposedEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EmffrequencyEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EmffrequencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EmfradiobandEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EmfradiobandEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_EnvcauseEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_EnvcauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ExcisetaxtypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ExcisetaxtypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_FaoregionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_FaoregionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_FoodborneHazard1Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_FoodborneHazard1Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_FoodborneHazard2Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_FoodborneHazard2Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_FoodborneHazard3Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_FoodborneHazard3Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GbdchildcausesEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GbdchildcausesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GhecauseEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GhecauseEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_Ghecauselevel1Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_Ghecauselevel1Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_Ghecauselevel2Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_Ghecauselevel2Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_Ghecauselevel3Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_Ghecauselevel3Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_Ghecauselevel4Enum\",\"types\":[\"Class\"],\"dcid\":\"WHO_Ghecauselevel4Enum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GhecausesEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GhecausesEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GlassamcawareAntibioticsgroupEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GlassamcawareAntibioticsgroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GlobalEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GlobalEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GoequestionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GoequestionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GovernmentbenefitEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GovernmentbenefitEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_GroupEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_GroupEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_HarmandconsequenceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_HarmandconsequenceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_HealthcarefacilityEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_HealthcarefacilityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_HealthstatusEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_HealthstatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_HouseholdCompByAgeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_HouseholdCompByAgeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_HouseholdcookingfuelEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_HouseholdcookingfuelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_HouseholdwealthEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_HouseholdwealthEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_IhrsparcapacitylevelEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_IhrsparcapacitylevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_InadequacyEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_InadequacyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_KeCoreEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_KeCoreEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_KeCountyEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_KeCountyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_LegislationtypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_LegislationtypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_MeasureimportancetypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_MeasureimportancetypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_MotocycleoccupanttypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_MotocycleoccupanttypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_NationalsystemtypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_NationalsystemtypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_NgoEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_NgoEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_OpenaccessserviceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_OpenaccessserviceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PenaltytypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PenaltytypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PhoneaccesstypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PhoneaccesstypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PolicyadoptionlevelEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PolicyadoptionlevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PolicyframeworkEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PolicyframeworkEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PolicysectorEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PolicysectorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PopTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PopTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PriceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PriceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PricemeasuretypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PricemeasuretypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ProgrammeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ProgrammeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PublicplaceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PublicplaceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PublicprivatesettingEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PublicprivatesettingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_PublishstateEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_PublishstateEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RcregionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RcregionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_ResidenceareatypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_ResidenceareatypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RoadusertypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RoadusertypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudHivhepCtEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudHivhepCtEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudhwfEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudhwfEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudmainsubstanceattreatmentEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudmainsubstanceattreatmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudmaintenanceaccessrestrictionsEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudmaintenanceaccessrestrictionsEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudmonitoringEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudmonitoringEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudpharmacotherapyoptionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudpharmacotherapyoptionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudpreventionprogrammeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudpreventionprogrammeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudrepEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudrepEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudreportingEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudreportingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudspecificpopulationEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudspecificpopulationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudsubstancedependenceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudsubstancedependenceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudtreatmentEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudtreatmentEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_RsudtreatmentlocationEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_RsudtreatmentlocationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SeattypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SeattypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_Series\",\"types\":[\"Class\"],\"dcid\":\"WHO_Series\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SeverityEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SeverityEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SexEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SexEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SocialcosttypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SocialcosttypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SocioeconomicEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SocioeconomicEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SpecialpopulationEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SpecialpopulationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SponsorshiporiginatorEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SponsorshiporiginatorEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_StandardofcareEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_StandardofcareEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SubregionEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SubregionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SubstancetypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SubstancetypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SubstancetypedisorderEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SubstancetypedisorderEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SunbedAccessEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SunbedAccessEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SunbedControlEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SunbedControlEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SunbedInfoEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SunbedInfoEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SunbedSafetyEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SunbedSafetyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_SunbedTrainingEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_SunbedTrainingEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_TbBenchmarkEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_TbBenchmarkEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_TbCasetypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_TbCasetypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_TbTreathistoryEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_TbTreathistoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_TbTreatmenttypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_TbTreatmenttypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_TimeperiodEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_TimeperiodEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_TobaccoNicotineProductEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_TobaccoNicotineProductEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_UncertaintyIntervalEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_UncertaintyIntervalEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_VehiclestandardEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_VehiclestandardEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_WealthdecileEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_WealthdecileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_WealthquintileEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_WealthquintileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_WealthtercileEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_WealthtercileEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_WprDatasourceEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_WprDatasourceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_WprDemoIndEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_WprDemoIndEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WHO_YearEnum\",\"types\":[\"Class\"],\"dcid\":\"WHO_YearEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WPAdBlock\",\"types\":[\"Class\"],\"dcid\":\"WPAdBlock\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WPFooter\",\"types\":[\"Class\"],\"dcid\":\"WPFooter\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WPHeader\",\"types\":[\"Class\"],\"dcid\":\"WPHeader\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WPSideBar\",\"types\":[\"Class\"],\"dcid\":\"WPSideBar\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WantAction\",\"types\":[\"Class\"],\"dcid\":\"WantAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WarrantyPromise\",\"types\":[\"Class\"],\"dcid\":\"WarrantyPromise\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WarrantyScope\",\"types\":[\"Class\"],\"dcid\":\"WarrantyScope\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WasteTreatmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WasteTreatmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WasteWater\",\"types\":[\"Class\"],\"dcid\":\"WasteWater\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WatchAction\",\"types\":[\"Class\"],\"dcid\":\"WatchAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Water\",\"types\":[\"Class\"],\"dcid\":\"Water\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterQualitySite\",\"types\":[\"Class\"],\"dcid\":\"WaterQualitySite\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterSourceTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterSourceTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterTreatmentLevelEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterTreatmentLevelEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterTreatmentStatusEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterTreatmentStatusEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterTreatmentSystemEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterTreatmentSystemEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterTreatmentTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterTreatmentTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterUseCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"WaterUseCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Waterfall\",\"types\":[\"Class\"],\"dcid\":\"Waterfall\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WaterspoutEvent\",\"types\":[\"Class\"],\"dcid\":\"WaterspoutEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WealthIndexEnum\",\"types\":[\"Class\"],\"dcid\":\"WealthIndexEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WearAction\",\"types\":[\"Class\"],\"dcid\":\"WearAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WeatherConditionEnum\",\"types\":[\"Class\"],\"dcid\":\"WeatherConditionEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WebApplication\",\"types\":[\"Class\"],\"dcid\":\"WebApplication\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WebPage\",\"types\":[\"Class\"],\"dcid\":\"WebPage\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WebPageElement\",\"types\":[\"Class\"],\"dcid\":\"WebPageElement\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WebSite\",\"types\":[\"Class\"],\"dcid\":\"WebSite\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WeightUnitOfMeasure\",\"types\":[\"Class\"],\"dcid\":\"WeightUnitOfMeasure\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureCelsius31Event\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureCelsius31Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureCelsius32Event\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureCelsius32Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureCelsius33Event\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureCelsius33Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureCelsius34Event\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureCelsius34Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureCelsius35Event\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureCelsius35Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureCelsius36Event\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureCelsius36Event\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WetBulbTemperatureEvent\",\"types\":[\"Class\"],\"dcid\":\"WetBulbTemperatureEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WholesaleStore\",\"types\":[\"Class\"],\"dcid\":\"WholesaleStore\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WildfireEvent\",\"types\":[\"Class\"],\"dcid\":\"WildfireEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WildlandFireEvent\",\"types\":[\"Class\"],\"dcid\":\"WildlandFireEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WinAction\",\"types\":[\"Class\"],\"dcid\":\"WinAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WindSpeedMagnitudeTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WindSpeedMagnitudeTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Winery\",\"types\":[\"Class\"],\"dcid\":\"Winery\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WinterStormEvent\",\"types\":[\"Class\"],\"dcid\":\"WinterStormEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WinterWeatherEvent\",\"types\":[\"Class\"],\"dcid\":\"WinterWeatherEvent\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WordElementTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WordElementTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WorkCategoryEnum\",\"types\":[\"Class\"],\"dcid\":\"WorkCategoryEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WorkExperienceEnum\",\"types\":[\"Class\"],\"dcid\":\"WorkExperienceEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WorkZoneTypeEnum\",\"types\":[\"Class\"],\"dcid\":\"WorkZoneTypeEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WorkerClassificationEnum\",\"types\":[\"Class\"],\"dcid\":\"WorkerClassificationEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Workplace\",\"types\":[\"Class\"],\"dcid\":\"Workplace\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WorldBank_CurrencyEnum\",\"types\":[\"Class\"],\"dcid\":\"WorldBank_CurrencyEnum\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"WriteAction\",\"types\":[\"Class\"],\"dcid\":\"WriteAction\",\"provenanceId\":\"dc/base/Schema\"},{\"name\":\"Zoo\",\"types\":[\"Class\"],\"dcid\":\"Zoo\",\"provenanceId\":\"dc/base/Schema\"}]}}}}}"